Commit 124656b81f7268ea8fca4d80149ff234f98fc649

Authored by Cédric RICARD
1 parent c761edc4

Fix bug in read_line()

Showing 1 changed file with 1 additions and 1 deletions   Show diff stats
anubis_dev/vm/src/vmtools.cpp
... ... @@ -2116,7 +2116,7 @@ int read_line_from_file(U32 conn, int n, U32 string)
2116 2116 }
2117 2117 return len;
2118 2118 }
2119   - else if feof(fp)
  2119 + else if(feof(fp))
2120 2120 {
2121 2121 *((char *)a+4) = '\0';
2122 2122 return -3;
... ...