google / cmockery

A lightweight library to simplify and generalize the process of writing unit tests for C applications.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Some warnings related with printf and derivates.

GoogleCodeExporter opened this issue · comments

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