aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorgoodale <goodale@1c20744c-e24a-42ec-9533-f5004cb800e5>2001-05-10 12:33:35 +0000
committergoodale <goodale@1c20744c-e24a-42ec-9533-f5004cb800e5>2001-05-10 12:33:35 +0000
commit04f47e25e65c5c690e02a59453c32163e9aceae6 (patch)
tree5ebb6f1353debb20ca70d0515154e51346dcc659 /src
parent907f993b92b1e689da6d05dd062e449461a68a35 (diff)
Making rcsid string a constant - PR 669.
Tom git-svn-id: http://svn.cactuscode.org/arrangements/CactusPUGH/PUGHInterp/trunk@12 1c20744c-e24a-42ec-9533-f5004cb800e5
Diffstat (limited to 'src')
-rw-r--r--src/Interpolate.c2
-rw-r--r--src/Operator.c2
-rw-r--r--src/Startup.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/src/Interpolate.c b/src/Interpolate.c
index 392cb18..dc6bc5a 100644
--- a/src/Interpolate.c
+++ b/src/Interpolate.c
@@ -24,7 +24,7 @@
#include "pughInterpGH.h"
/* the rcs ID and its dummy function to use it */
-static char *rcsid = "$Id$";
+static const char *rcsid = "$Id$";
CCTK_FILEVERSION(CactusPUGH_PUGHInterp_Interpolate_c)
diff --git a/src/Operator.c b/src/Operator.c
index ae31b9c..762cb30 100644
--- a/src/Operator.c
+++ b/src/Operator.c
@@ -27,7 +27,7 @@
#include "pughInterpGH.h"
/* the rcs ID and its dummy function to use it */
-static char *rcsid = "$Header$";
+static const char *rcsid = "$Header$";
CCTK_FILEVERSION(CactusPUGH_PUGHInterp_Operator_c)
/* uncomment this to get some debugging output */
diff --git a/src/Startup.c b/src/Startup.c
index 729e712..d8eac29 100644
--- a/src/Startup.c
+++ b/src/Startup.c
@@ -17,7 +17,7 @@
#include "pughInterpGH.h"
/* the rcs ID and its dummy function to use it */
-static char *rcsid = "$Header$";
+static const char *rcsid = "$Header$";
CCTK_FILEVERSION(CactusPUGH_PUGHInterp_Startup_c)