]> git.deb.at Git - pkg/abook.git/commitdiff
Minor cast fixes
authorJaakko Heinonen <jheinonen@users.sourceforge.net>
Thu, 16 Aug 2001 12:24:32 +0000 (12:24 +0000)
committerJaakko Heinonen <jheinonen@users.sourceforge.net>
Thu, 16 Aug 2001 12:24:32 +0000 (12:24 +0000)
filter.c
misc.c

index c681af62a84b7d6621fb820a008bf8ff41abe113..a4399399b168d267d47b4ed18374c501b77afc8a 100644 (file)
--- a/filter.c
+++ b/filter.c
@@ -134,7 +134,7 @@ get_real_name()
 
        pwent = getpwnam(username);
 
-       if( (tmp = malloc(strlen(pwent->pw_gecos) +1)) == NULL)
+       if( (tmp = (char *)malloc(strlen(pwent->pw_gecos) +1)) == NULL)
                return strdup(username);
 
        rtn = sscanf(pwent->pw_gecos, "%[^,]", tmp);
@@ -647,7 +647,7 @@ mutt_read_line(FILE *in, char **alias, char **rest)
        while( ! ISSPACE(*ptr) )
                ptr++;
 
-       if( (*alias = malloc(ptr-tmp+1)) == NULL)
+       if( (*alias = (char *)malloc(ptr-tmp+1)) == NULL)
                return 1;
 
        strncpy(*alias, tmp, ptr-tmp);
diff --git a/misc.c b/misc.c
index 1213dd57297d734797f3cc1c6d5ab3de91b1e2e1..225d1563f9e048b981bff605bb7283e6ad9c189e 100644 (file)
--- a/misc.c
+++ b/misc.c
@@ -232,7 +232,7 @@ getaline(FILE *f)
 
        len = 0;
        size = thres;
-       buf = abook_malloc(size);
+       buf = (char *)abook_malloc(size);
 
        while (fgets(buf+len, size-len, f) != NULL) {
                len += strlen(buf+len);