Add a couple of missing spaces (style nits).
authornicm <nicm@openbsd.org>
Fri, 24 Apr 2015 16:45:32 +0000 (16:45 +0000)
committernicm <nicm@openbsd.org>
Fri, 24 Apr 2015 16:45:32 +0000 (16:45 +0000)
usr.bin/file/magic-load.c
usr.bin/file/text.c

index 2945514..5f3d1f1 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: magic-load.c,v 1.1 2015/04/24 16:24:11 nicm Exp $ */
+/* $OpenBSD: magic-load.c,v 1.2 2015/04/24 16:45:32 nicm Exp $ */
 
 /*
  * Copyright (c) 2015 Nicholas Marriott <nicm@openbsd.org>
@@ -864,10 +864,10 @@ fail:
 static void
 magic_free_line(struct magic_line *ml)
 {
-       free((void*)ml->type_string);
+       free((void *)ml->type_string);
 
-       free((void*)ml->mimetype);
-       free((void*)ml->result);
+       free((void *)ml->mimetype);
+       free((void *)ml->result);
 
        free(ml);
 }
index f835c50..c027a49 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: text.c,v 1.1 2015/04/24 16:24:11 nicm Exp $ */
+/* $OpenBSD: text.c,v 1.2 2015/04/24 16:45:32 nicm Exp $ */
 
 /*
  * Copyright (c) 2015 Nicholas Marriott <nicm@openbsd.org>
@@ -138,7 +138,7 @@ text_try_words(const void *base, size_t size, int flags)
        size_t           wordlen;
        u_int            i;
 
-       end = (char*)base + size;
+       end = (char *)base + size;
        for (cp = base; cp != end; /* nothing */) {
                while (cp != end && isspace((u_char)*cp))
                        cp++;