Skip to content

Commit

Permalink
Remove return of void in pigz.c.
Browse files Browse the repository at this point in the history
  • Loading branch information
madler committed Sep 27, 2016
1 parent f77dc7e commit 1a4c404
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pigz.c
Expand Up @@ -632,7 +632,7 @@ local void *yarn_malloc(size_t size)

local void yarn_free(void *ptr)
{
return free_track(&mem_track, ptr);
free_track(&mem_track, ptr);
}
#endif

Expand Down

0 comments on commit 1a4c404

Please sign in to comment.