Fix warning

git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@4221 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
This commit is contained in:
Dan Williams
2008-10-27 00:35:44 +00:00
parent 7d723b54a4
commit a7949a1230

View File

@@ -98,7 +98,9 @@ void ifparser_init(void)
break; break;
// If the line did not match, skip it // If the line did not match, skip it
if (ret == 0) { if (ret == 0) {
fgets(rline, 255, inp); char *ignored;
ignored = fgets(rline, 255, inp);
continue; continue;
} }