Second batch of correction to lower the number of GCC warnings

This commit is contained in:
Hombre
2010-08-30 01:07:43 +02:00
parent 02dac0425d
commit 76285ea74d
20 changed files with 288 additions and 282 deletions

View File

@@ -38,7 +38,7 @@ bool MultiLangMgr::load (Glib::ustring fname, MultiLangMgr* fb) {
char* buffer = new char[2048];
while (buffer = fgets (buffer, 2048, f)) {
while ((buffer = fgets (buffer, 2048, f))) {
// find separator
int seppos = 0;
while (buffer[seppos]!=0 && buffer[seppos]!=';')