Random in-passing tweak.
diff --git a/libbb/llist.c b/libbb/llist.c
index af0a994..5b70d66 100644
--- a/libbb/llist.c
+++ b/libbb/llist.c
@@ -53,12 +53,8 @@
 llist_t *llist_free_one(llist_t *elm)
 {
 	llist_t *next = elm ? elm->link : NULL;
-#if ENABLE_DMALLOC /* avoid warnings from dmalloc's error-free-null option */
-	if (elm)
-#endif
-		free(elm);
-	elm = next;
-	return elm;
+	free(elm);
+	return next;
 }
 #endif