From 6484e89cae2cb585c91e2ea61d5139d2407e00c1 Mon Sep 17 00:00:00 2001 From: tradke Date: Mon, 17 Jan 2000 15:10:35 +0000 Subject: Removed warning when using an invalid out_style setting. This is already fixed by declaring it as a KEYWORD parameter. git-svn-id: http://svn.cactuscode.org/arrangements/CactusBase/IOBasic/trunk@25 b589c3ab-70e8-4b4d-a09f-cba2dd200880 --- src/Write.c | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'src/Write.c') diff --git a/src/Write.c b/src/Write.c index 40cc6aa..a618033 100644 --- a/src/Write.c +++ b/src/Write.c @@ -75,11 +75,8 @@ void IOBasic_Write (cGH *GH, int index, const char *alias) if (CCTK_Equals(outScalar_style,"gnuplot")) title_start_char = '#'; - else { - if (! CCTK_Equals(outScalar_style,"xgraph")) - CCTK_WARN(3,"Don't understand outScalar_style ... using xgraph"); - title_start_char = 34; - } + else + title_start_char = 34; /* this is for xgraph */ fprintf (file,"%c%s v time\n",title_start_char,alias); -- cgit v1.2.3