diff --git a/lib/modules/Debug.pmod/werror.pmod b/lib/modules/Debug.pmod/werror.pmod
index 4b986910be38f37c36037b94b519a92276f64069..a94c396fd90411aceae1f398d18d19597648a40e 100644
--- a/lib/modules/Debug.pmod/werror.pmod
+++ b/lib/modules/Debug.pmod/werror.pmod
@@ -1,5 +1,5 @@
 /*
- * $Id: werror.pmod,v 1.2 1999/09/26 14:21:22 grubba Exp $
+ * $Id: werror.pmod,v 1.3 1999/12/30 00:36:10 grubba Exp $
  *
  * Some functions to simplify writing debug-messages.
  * (Aren't we lazy? :-) )
@@ -8,7 +8,7 @@
 function(:int(0..0)) `[](string print_what)
 {
    if (print_what=="") print_what="bipp\n";
-   else if (print_what[-1]!="\n") print_what+="\n";
+   else if (print_what[-1]!='\n') print_what+="\n";
    return lambda() { werror(print_what); return 0; };
 }