Skip to content

Commit

Permalink
mx_util: fix mx_asprintf_forever prototype
Browse files Browse the repository at this point in the history
  • Loading branch information
mariux committed Dec 17, 2014
1 parent 6161e7e commit d9f8600
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mx_util.h
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ int mx_strtoi64(char *str, int64_t *to);

char *mx_strdup_forever(char *str);
int mx_vasprintf_forever(char **strp, const char *fmt, va_list ap);
int mx_asprintf_forever(char **strp, const char *fmt, ...);
int mx_asprintf_forever(char **strp, const char *fmt, ...) __attribute__ ((format(printf, 2, 3)));

char *mx_dirname(char *path);
char *mx_dirname_forever(char *path);
Expand Down

0 comments on commit d9f8600

Please sign in to comment.