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:
ade0890
)
fix compiler warnings: 'statement is unreachable'
author
Yang Tse
<yangsita@gmail.com>
Tue, 19 Feb 2008 17:25:19 +0000
(17:25 +0000)
committer
Yang Tse
<yangsita@gmail.com>
Tue, 19 Feb 2008 17:25:19 +0000
(17:25 +0000)
lib/ssh.c
patch
|
blob
|
history
diff --git
a/lib/ssh.c
b/lib/ssh.c
index
9042d41
..
0dff031
100644
(file)
--- a/
lib/ssh.c
+++ b/
lib/ssh.c
@@
-277,20
+277,20
@@
static CURLcode libssh2_session_error_to_CURLE(int err)
static LIBSSH2_ALLOC_FUNC(libssh2_malloc)
{
+ (void)abstract; /* arg not used */
return malloc(count);
- (void)abstract;
}
static LIBSSH2_REALLOC_FUNC(libssh2_realloc)
{
+ (void)abstract; /* arg not used */
return realloc(ptr, count);
- (void)abstract;
}
static LIBSSH2_FREE_FUNC(libssh2_free)
{
+ (void)abstract; /* arg not used */
free(ptr);
- (void)abstract;
}
/*