- error.c: removed a C++ like comment
Daniel
diff --git a/error.c b/error.c
index a30530e..26af326 100644
--- a/error.c
+++ b/error.c
@@ -160,7 +160,7 @@
     size = 100;
     length = 0;
 
-    while (1) {                       // From the man page for vsnprintf ....
+    while (1) {
 	left = size - length;
 		    /* Try to print in the allocated space. */
 	chars = vsnprintf(str + length, left, msg, args);