aboutsummaryrefslogtreecommitdiff
path: root/libssh/string.c
diff options
context:
space:
mode:
Diffstat (limited to 'libssh/string.c')
-rw-r--r--libssh/string.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libssh/string.c b/libssh/string.c
index 2f14c141..2e6c3bfd 100644
--- a/libssh/string.c
+++ b/libssh/string.c
@@ -26,7 +26,7 @@ MA 02111-1307, USA. */
#include <string.h>
#include "libssh/priv.h"
-STRING *string_new(u32 size){
+STRING *string_new(unsigned int size){
STRING *str=malloc(size + 4);
str->size=htonl(size);
return str;