]> err.no Git - util-linux/commitdiff
setarch: fix compiler warning
authorLaMont Jones <lamont@debian.org>
Sat, 22 Sep 2007 04:38:32 +0000 (22:38 -0600)
committerKarel Zak <kzak@redhat.com>
Sun, 23 Sep 2007 19:34:33 +0000 (21:34 +0200)
NULL is not 0L.  It's (void*)0.  Passing that as a parameter to a function
that takes an unsigned long results in a warning about the lack of a cast.

Signed-off-by: LaMont Jones <lamont@debian.org>
sys-utils/setarch.c

index 5379c307323f75c3fd69d72bf13b0fd693c5023b..b98d8d37bc68b4fff691e2f909f0a26c03e2dd1d 100644 (file)
@@ -225,7 +225,7 @@ int main(int argc, char *argv[])
   }
   #if defined(__sparc64__) || defined(__sparc__)
    if (!strcmp(p, "sparc32bash")) {
-       if (set_arch(p, NULL))
+       if (set_arch(p, 0L))
          error(EXIT_FAILURE, errno, "Failed to set personality to %s", p);
        execl("/bin/bash", NULL);
        error(EXIT_FAILURE, errno, "/bin/bash");