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/WriteGF.c | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'src/WriteGF.c') diff --git a/src/WriteGF.c b/src/WriteGF.c index ed54c9d..75a2e24 100644 --- a/src/WriteGF.c +++ b/src/WriteGF.c @@ -63,11 +63,8 @@ void IOBasic_WriteGF (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 */ myGH = (iobasicGH *) GH->extensions [CCTK_GHExtensionHandle ("IOBasic")]; -- cgit v1.2.3