corrected sign of error return value

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17693 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Frank Gevaerts 2008-06-05 15:49:35 +00:00
parent c2416bf8b9
commit 6d9f55efff

View file

@ -714,7 +714,7 @@ static int prime_transfer(int endpoint, void* ptr, int len, bool send, bool wait
if(qh->status!=0) { if(qh->status!=0) {
/* No need to cancel wait here since it was done and the signal /* No need to cancel wait here since it was done and the signal
* came. */ * came. */
return 5; return -5;
} }
//logf("all tds done"); //logf("all tds done");
} }