On Jan 21, 2010, at 7:54 AM, Daniel Carrera wrote: > Hello, > > I have a simple program that uses SQLite. When I compile it I see the > following warning: > > /home/daniel/.local/lib/libsqlite3.a(sqlite3.o): In function `memset': > /usr/include/bits/string3.h:82: warning: memset used with constant > zero > length parameter; this could be due to transposed parameters > > Does anyone know what this means and how I can remove it?
This is caused by a bug in GCC. http://gcc.gnu.org/bugzilla/show_bug.cgi?id=42688 has additional information. But the bug appears to be harmless (correct code is generated in spite of the warning). So you should simply ignore it. > > Thanks, > Daniel. > _______________________________________________ > sqlite-users mailing list > sqlite-users@sqlite.org > http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users D. Richard Hipp d...@hwaci.com _______________________________________________ sqlite-users mailing list sqlite-users@sqlite.org http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users