From ec73f57f050711f672a9cea32c9e43a370b807f4 Mon Sep 17 00:00:00 2001 From: jtc Date: Fri, 20 Aug 1993 23:40:43 +0000 Subject: [PATCH] cast away compiler warning message. --- lib/libc/stdlib/system.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/libc/stdlib/system.c b/lib/libc/stdlib/system.c index 3b25ba6c1459..3b6742d64a5d 100644 --- a/lib/libc/stdlib/system.c +++ b/lib/libc/stdlib/system.c @@ -33,7 +33,7 @@ #if defined(LIBC_SCCS) && !defined(lint) /*static char sccsid[] = "from: @(#)system.c 5.10 (Berkeley) 2/23/91";*/ -static char rcsid[] = "$Id: system.c,v 1.5 1993/08/20 23:00:46 jtc Exp $"; +static char rcsid[] = "$Id: system.c,v 1.6 1993/08/20 23:40:43 jtc Exp $"; #endif /* LIBC_SCCS and not lint */ #include @@ -53,7 +53,7 @@ system(command) sig_t intsave, quitsave; int omask; int pstat; - char *argp[] = {"sh", "-c", command, NULL}; + char *argp[] = {"sh", "-c", (char *) command, NULL}; if (!command) /* just checking... */ return(1);