diff --git a/Common/DefaultOptions.h b/Common/DefaultOptions.h
index bf850282fd434c9b129857ce01d72e8bec63128c..4a5e6af8b81dfab0c23b2f6e1d37a5bf781ae275 100644
--- a/Common/DefaultOptions.h
+++ b/Common/DefaultOptions.h
@@ -1554,7 +1554,7 @@ StringXNumber PrintOptions_Number[] = {
     "Number of steps in loop over print parameter" },
 
   { F|O, "Background" , opt_print_background , 0. ,
-    "Print background?" },
+    "Print background (gradient and image)?" },
 
   { F|O, "CompositeWindows" , opt_print_composite_windows , 0. ,
     "Composite all window tiles in the same output image (for bitmap output only)" },
diff --git a/Geo/Geo.cpp b/Geo/Geo.cpp
index 06806741499eeb76154c197bf3fe01c324800b95..14a8128d8eec092a37448a5ed388c18edb4cff1d 100644
--- a/Geo/Geo.cpp
+++ b/Geo/Geo.cpp
@@ -2901,7 +2901,8 @@ static void RemoveDegenerateSurfaces()
       else unique.erase(it);
     }
 
-    if (N-unique.size()) Msg::Info("Coherence : Removing %d seams on Surface %d",N-unique.size(),s->Num);
+    if (N-unique.size())
+      Msg::Info("Coherence : Removing %d seams on Surface %d", N-unique.size(),s->Num);
 
     List_T *ll = s->Generatrices;
     s->Generatrices = List_Create(4, 1, sizeof(Curve *));