Skip to content

Commit

Permalink
fixed fprintf missing %s
Browse files Browse the repository at this point in the history
  • Loading branch information
libbymiller committed Jul 4, 2013
1 parent 048f32f commit dca32f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ext/wiringpi/WiringPi/wiringPi/wiringPi.c
Original file line number Diff line number Diff line change
Expand Up @@ -521,7 +521,7 @@ int wiringPiFailure (char *message, ...)
vsnprintf (buffer, 1023, message, argp) ;
va_end (argp) ;

fprintf (stderr, buffer) ;
fprintf(stderr,"%s",buffer) ;
exit (EXIT_FAILURE) ;

return 0 ;
Expand Down

0 comments on commit dca32f7

Please sign in to comment.