Fix compile error, missing semicolon.

This commit is contained in:
Brecht Van Lommel
2010-04-06 01:20:45 +00:00
parent 1c1d10f285
commit b1e556890d

View File

@@ -214,7 +214,7 @@ size_t BLI_bfile_fwrite(const void *ptr, size_t size, size_t nmemb,
size_t ret;
if (f == NULL)
return 0
return 0;
ret = fwrite(ptr, size, nmemb, f->stream);
if (ret <= 0) {