]> andersk Git - moira.git/commitdiff
fixed a cast
authortom <tom>
Sat, 29 Oct 1994 20:12:57 +0000 (20:12 +0000)
committertom <tom>
Sat, 29 Oct 1994 20:12:57 +0000 (20:12 +0000)
server/qsetup.dc

index 5171628370d013ad693cf346d2009f76f6670385..3d4e04657705846d86e848222669c33554f83d31 100644 (file)
@@ -997,7 +997,7 @@ setup_ahst(q,argv,cl)
              * link in an inet_addr() that returns an error for
              * this case. 
              */
-           name = inet_ntoa(inet_addr(argv[9+row]));
+           name = (char *) inet_ntoa(inet_addr(argv[9+row]));
            EXEC SQL SELECT count(mach_id) INTO :cnt FROM machine
              WHERE address = :name;
            if (ingres_errno) return(mr_errcode);
This page took 0.16568 seconds and 5 git commands to generate.