fprintf(stdout, fmt); Is there any way to inhibit the warning for this specific line? Or will I end up having to compile the whole package with -Wno-format-nonliteral ?
It's a bit ugly but I think passing a dummy format argument (e.g. fprintf(stdout, fmt,0); should shut the compiler up without breaking anything. -- To UNSUBSCRIBE, email to [email protected] with a subject of "unsubscribe". Trouble? Contact [email protected]

