Dominique Simon wrote:
Am 23.04.2006 um 16:13 schrieb Klaus Schmidinger:
- Fixed a format string in recording.c to avoid a compiler warning on
64bit systems
I get the following warning now with gcc 2.95
recording.c: In method `cIndexFile::cIndexFile(const char *, bool)': recording.c:1200: warning: unknown conversion type character `z' in format recording.c:1200: warning: format argument is not a pointer (arg 3)
This format conversion specifier has been documented in the "GNU C Library Reference Manual" since at least 2001-07-06, so it's been there for quite a while - I guess it should be ok to use it ;-)
Could this lead to problems for me?
If you still want to use that old compiler, just remove the 'z' and you should be fine.
Klaus