Skip to content

Commit bbd4243

Browse files
authored
Merge pull request #159 from komark06/master
Correct function parameter to match implementation
2 parents 34a821c + b951eae commit bbd4243

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

queue.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ struct list_head *q_new()
1818
}
1919

2020
/* Free all storage used by queue */
21-
void q_free(struct list_head *l) {}
21+
void q_free(struct list_head *head) {}
2222

2323
/* Insert an element at head of queue */
2424
bool q_insert_head(struct list_head *head, char *s)

0 commit comments

Comments
 (0)