projects
/
platform
/
upstream
/
curl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
bdbf6e9
)
fix questionable compare compiler error (unsigned can't be < 0)
author
Marty Kuhrt
<marty@kuhrt.net>
Fri, 30 Dec 2005 00:20:46 +0000
(
00:20
+0000)
committer
Marty Kuhrt
<marty@kuhrt.net>
Fri, 30 Dec 2005 00:20:46 +0000
(
00:20
+0000)
lib/file.c
patch
|
blob
|
history
diff --git
a/lib/file.c
b/lib/file.c
index 8926105e939e189c5e23ecb819a1af84e14941ae..b625817630a60050d3e3c636abae0a04e261fb1d 100644
(file)
--- a/
lib/file.c
+++ b/
lib/file.c
@@
-230,7
+230,7
@@
static CURLcode file_upload(struct connectdata *conn)
if(res)
break;
- if (readcount <= 0)
+ if (readcount <= 0)
/* fix questionable compare error. curlvms */
break;
nread = (size_t)readcount;