]> git.deb.at Git - pkg/abook.git/commitdiff
int -> size_t changes
authorJaakko Heinonen <jheinonen@users.sourceforge.net>
Sat, 22 Nov 2003 15:51:36 +0000 (15:51 +0000)
committerJaakko Heinonen <jheinonen@users.sourceforge.net>
Sat, 22 Nov 2003 15:51:36 +0000 (15:51 +0000)
misc.c

diff --git a/misc.c b/misc.c
index 8a4b9cfc5d2657fbb8ed69076c849d88b1efa5f6..f54b1c90b45c5cc3bdc7efdf1db2f264c39345f8 100644 (file)
--- a/misc.c
+++ b/misc.c
@@ -85,7 +85,7 @@ char *
 mkstr (const char *format, ... )
 {
        MY_VA_LOCAL_DECL;
-       int size = 100;
+       size_t size = 100;
        char *buffer =
 #ifdef ABOOK_SRC
                (char *) abook_malloc (size);
@@ -188,7 +188,7 @@ char *
 my_getcwd()
 {
        char *dir = NULL;
-       int size = 100;
+       size_t size = 100;
 
        if( (dir = (char *)malloc(size)) == NULL)
                return NULL;