summaryrefslogtreecommitdiff
path: root/src/main
diff options
context:
space:
mode:
authoreschnett <eschnett@17b73243-c579-4c4c-a9d2-2d5706c11dac>2012-10-23 20:37:40 +0000
committereschnett <eschnett@17b73243-c579-4c4c-a9d2-2d5706c11dac>2012-10-23 20:37:40 +0000
commit2eb52c6eb963581f21dbc485d721836c39235ed7 (patch)
tree1073715cc3a5e39e77da5cdafe1729708acbae09 /src/main
parentdb5c9b0b1c59082727cfd1f3c297941cc9ce58af (diff)
Correct C function prototypes
git-svn-id: http://svn.cactuscode.org/flesh/trunk@4886 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'src/main')
-rw-r--r--src/main/WarnLevel.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/WarnLevel.c b/src/main/WarnLevel.c
index 2519910e..a1d6c283 100644
--- a/src/main/WarnLevel.c
+++ b/src/main/WarnLevel.c
@@ -1137,7 +1137,7 @@ int CCTKi_SetErrorLevel (int level)
}
-int CCTK_ExitAfterParamCheck();
+int CCTK_ExitAfterParamCheck (void);
/*@@
@routine ExitIfParamCheckOnly
@date Mon May 16 2012
@@ -1147,7 +1147,7 @@ int CCTK_ExitAfterParamCheck();
@enddesc
@@*/
-void CCTK_ExitIfParamCheckOnly()
+void CCTK_ExitIfParamCheckOnly (void)
{
if(CCTK_ExitAfterParamCheck()) {
printf("Exit after param check requested using the --exit-after-param-check option.\n");