fixed print_string() prototype

This commit is contained in:
Sylvain Rochet 2012-06-04 01:45:33 +02:00
parent bea45b3c30
commit 2c7bd7e591

View File

@ -601,7 +601,7 @@ pr_log (void *arg, char *fmt, ...)
* print_string - print a readable representation of a string using
* printer.
*/
void print_string(char *p, int len, void (*printer) (void *, char *, ...), void arg) {
void print_string(char *p, int len, void (*printer) (void *, char *, ...), void *arg) {
int c;
printer(arg, "\"");