locke12456 / cmockery

Automatically exported from code.google.com/p/cmockery
0 stars 0 forks source link

Some warnings related with printf and derivates. #25

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
I've noticed some warnings related with an "incorrect" use of printf and
derivates. Could you fix that issue aplying the next patch?

1535c1535
<     puts(buffer);

---
>     printf(buffer);
1545c1545
<     fputs(buffer, stderr);

---
>     fprintf(stderr, buffer);

Original issue reported on code.google.com by kerrigan...@gmail.com on 7 Mar 2010 at 2:39