diff --git a/Fltk/Callbacks.cpp b/Fltk/Callbacks.cpp
index fe91805e8b6ae5762aba2b956287ce1d55741f1f..d98b34982ce375828418a21b071115341248a09f 100644
--- a/Fltk/Callbacks.cpp
+++ b/Fltk/Callbacks.cpp
@@ -1,4 +1,4 @@
-// $Id: Callbacks.cpp,v 1.306 2004-12-23 03:19:58 geuzaine Exp $
+// $Id: Callbacks.cpp,v 1.307 2004-12-23 03:21:36 geuzaine Exp $
 //
 // Copyright (C) 1997-2004 C. Geuzaine, J.-F. Remacle
 //
@@ -785,10 +785,8 @@ test:
           goto test;
     }
   save:
-    if(rename(CTX.filename, name) == -1)
-      Msg(GERROR, "Unable to rename file '%s'", CTX.filename);
-    else
-      OpenProblem(name);
+    rename(CTX.filename, name);
+    OpenProblem(name);
     Draw();
   }
 }
diff --git a/Makefile b/Makefile
index a0b4ba0f326e03fdd166f77cd13e1c113216955c..f23f9b42d105fd1fbcb8b7fd2f7ddc5bd75ea033 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-# $Id: Makefile,v 1.380 2004-11-19 18:26:46 geuzaine Exp $
+# $Id: Makefile,v 1.381 2004-12-23 03:21:36 geuzaine Exp $
 #
 # Copyright (C) 1997-2004 C. Geuzaine, J.-F. Remacle
 #
@@ -23,7 +23,7 @@ include variables
 
 GMSH_MAJOR_VERSION = 1
 GMSH_MINOR_VERSION = 57
-GMSH_PATCH_VERSION = 0
+GMSH_PATCH_VERSION = 1
 GMSH_EXTRA_VERSION = "-cvs"
 
 GMSH_VERSION = ${GMSH_MAJOR_VERSION}.${GMSH_MINOR_VERSION}.${GMSH_PATCH_VERSION}${GMSH_EXTRA_VERSION}