Skip to content

Commit

Permalink
Updated BUGS
Browse files Browse the repository at this point in the history
  • Loading branch information
GreySyntax committed Oct 14, 2010
1 parent cb03182 commit 4f7807a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions BUGS
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
=== Known Bugs ===
:make backup is flakey
:LazyUSB::Write() doesnt work
2 changes: 1 addition & 1 deletion src/IDevice.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ bool IDevice::Upload(const char* file) {
fread(buffer, 1, length, data);
fclose(data);

int actual_length = (int)length;
int actual_length = 0;//((int)length) + 1;

return SendBuffer(buffer, length, &actual_length);
}

0 comments on commit 4f7807a

Please sign in to comment.