Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2)

Unified Diff: import/cross/archive_processor.cc

Issue 3083012: Tidying up. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/o3d/
Patch Set: '' Created 10 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « documentation/DoxygenLayout.xml ('k') | import/cross/archive_request.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: import/cross/archive_processor.cc
===================================================================
--- import/cross/archive_processor.cc (revision 55159)
+++ import/cross/archive_processor.cc (working copy)
@@ -75,7 +75,7 @@
// progressive streaming system
FILE *fp = fopen(filename, "rb");
if (!fp) return FAILURE; // can't open file!
- if (static_cast<size_t>(file_length) !=
+ if (static_cast<size_t>(file_length) !=
fread(p, sizeof(uint8), file_length, fp))
return FAILURE;
if (0 != fclose(fp)) return FAILURE;
« no previous file with comments | « documentation/DoxygenLayout.xml ('k') | import/cross/archive_request.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698