Skip to content

Commit

Permalink
Merge pull request #159 from komark06/master
Browse files Browse the repository at this point in the history
Correct function parameter to match implementation
  • Loading branch information
jserv authored Feb 25, 2024
2 parents 34a821c + b951eae commit bbd4243
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion queue.c
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ struct list_head *q_new()
}

/* Free all storage used by queue */
void q_free(struct list_head *l) {}
void q_free(struct list_head *head) {}

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

0 comments on commit bbd4243

Please sign in to comment.