Added pull geometry direction-relative
[alexxy/gromacs.git] / src / gromacs / gmxlib / warninp.c
index 1721a470123534f1a1fe8012642d08aa8ac7b931..62ce4aa2e4790dce6b91a696ab5d27776ecc2aa5 100644 (file)
@@ -3,7 +3,7 @@
  *
  * Copyright (c) 1991-2000, University of Groningen, The Netherlands.
  * Copyright (c) 2001-2004, The GROMACS development team.
- * Copyright (c) 2013,2014, by the GROMACS development team, led by
+ * Copyright (c) 2013,2014,2015, by the GROMACS development team, led by
  * Mark Abraham, David van der Spoel, Berk Hess, and Erik Lindahl,
  * and including many others, as listed in the AUTHORS file in the
  * top-level source directory and at http://www.gromacs.org.
@@ -74,12 +74,10 @@ warninp_t init_warning(gmx_bool bAllowWarnings, int maxwarning)
 
 void set_warning_line(warninp_t wi, const char *s, int line)
 {
-    if (s == NULL)
+    if (s != NULL)
     {
-        gmx_incons("Calling set_warning_line with NULL pointer");
+        strcpy(wi->filenm, s);
     }
-
-    strcpy(wi->filenm, s);
     wi->lineno = line;
 }