]> git.cameronkatri.com Git - bsdgames-darwin.git/commitdiff
Const the player type variable.
authorthorpej <thorpej@NetBSD.org>
Sun, 28 Dec 2003 17:53:48 +0000 (17:53 +0000)
committerthorpej <thorpej@NetBSD.org>
Sun, 28 Dec 2003 17:53:48 +0000 (17:53 +0000)
dab/main.cc

index c993874f942fe79337a3fbd4d78edb0aa932306f..399aa83f3a21acb824a317f9931a7734dc168a0e 100644 (file)
@@ -1,4 +1,4 @@
-/*     $NetBSD: main.cc,v 1.1 2003/12/27 01:16:55 christos Exp $       */
+/*     $NetBSD: main.cc,v 1.2 2003/12/28 17:53:48 thorpej Exp $        */
 
 /*-
  * Copyright (c) 2003 The NetBSD Foundation, Inc.
@@ -40,7 +40,7 @@
  * main.C: Main dots program
  */
 #include "defs.h"
-RCSID("$NetBSD: main.cc,v 1.1 2003/12/27 01:16:55 christos Exp $")
+RCSID("$NetBSD: main.cc,v 1.2 2003/12/28 17:53:48 thorpej Exp $")
 
 #include <iostream>
 #include <unistd.h>
@@ -106,7 +106,7 @@ static void play(BOARD& b, PLAYER* p[2])
 int main(int argc, char** argv)
 {
     size_t ny, nx, nn = 1, wt = 0;
-    char* nc = "ch";
+    const char* nc = "ch";
     int c;
     int acs = 1;