[Unison-hackers] [unison-svn] r420 - in trunk/src: . uimacnew uimacnew09

bcpierce@seas.upenn.edu bcpierce at seas.upenn.edu
Sat Mar 13 14:13:43 EST 2010


Author: bcpierce
Date: 2010-03-13 14:13:41 -0500 (Sat, 13 Mar 2010)
New Revision: 420

Modified:
   trunk/src/RECENTNEWS
   trunk/src/mkProjectInfo.ml
   trunk/src/uimacnew/cltool.c
   trunk/src/uimacnew09/cltool.c
Log:
* Silence compiler warnings on cltool.c (in OSX build)




Modified: trunk/src/RECENTNEWS
===================================================================
--- trunk/src/RECENTNEWS	2010-03-12 22:47:16 UTC (rev 419)
+++ trunk/src/RECENTNEWS	2010-03-13 19:13:41 UTC (rev 420)
@@ -1,56 +1,43 @@
 CHANGES FROM VERSION 2.40.1
 
-* Updated the Cygwin install instructions per Uwe Mayer (thanks!)
+* Silence compiler warnings on cltool.c (in OSX build)
 
-* Added interface builder files for BWToolkit framework to uimacnew09
-  directory, to make the distribution self-contained, and added
-  instructions for installing it to the INSTALL section of the manual.
 
--------------------------------
-CHANGES FROM VERSION 2.40.1
 
-* Updated the Cygwin install instructions per Uwe Mayer (thanks!)
-
-* Added interface builder files for BWToolkit framework to uimacnew09
-  directory, to make the distribution self-contained, and added
-  instructions for installing it to the INSTALL section of the manual.
-
 -------------------------------
 CHANGES FROM VERSION 2.40.1
 
-* Fix compilation problem in mkProjectInfo
+* Silence compiler warnings on cltool.c (in OSX build)
 
 
 
 -------------------------------
 CHANGES FROM VERSION 2.40.1
 
-* Adding updated frameworks
+* Silence compiler warnings on cltool.c (in OSX build)
 
 
--------------------------------
-CHANGES FROM VERSION 2.40.1
 
-* Removing old frameworks to make space for new ones in new OSX GUI
-
 -------------------------------
 CHANGES FROM VERSION 2.40.1
 
-* Removing old frameworks to make space for new ones in new OSX GUI
+* Silence compiler warnings on cltool.c (in OSX build)
 
+* Updated the Cygwin install instructions per Uwe Mayer (thanks!)
 
--------------------------------
-CHANGES FROM VERSION 2.40.1
+* Added interface builder files for BWToolkit framework to uimacnew09
+  directory, to make the distribution self-contained, and added
+  instructions for installing it to the INSTALL section of the manual.
 
-* Removing old frameworks to make space for new ones in new OSX GUI
+* Fix compilation problem in mkProjectInfo
 
+* Adding updated frameworks
 
--------------------------------
-CHANGES FROM VERSION 2.40.1
-
 * Update copyright string in OSX GUI
+
 * Make MyController a delegate of Application in OSX GUI, as 
   suggested by Jerome.
+
 -------------------------------
 CHANGES FROM VERSION 2.40.1
 

Modified: trunk/src/mkProjectInfo.ml
===================================================================
--- trunk/src/mkProjectInfo.ml	2010-03-12 22:47:16 UTC (rev 419)
+++ trunk/src/mkProjectInfo.ml	2010-03-13 19:13:41 UTC (rev 420)
@@ -99,16 +99,3 @@
 
 
 
-
-
-
-
-
-
-
-
-
-
-
-
-

Modified: trunk/src/uimacnew/cltool.c
===================================================================
--- trunk/src/uimacnew/cltool.c	2010-03-12 22:47:16 UTC (rev 419)
+++ trunk/src/uimacnew/cltool.c	2010-03-13 19:13:41 UTC (rev 420)
@@ -34,13 +34,13 @@
       fprintf(stderr,"Error: can't find the Unison application using the Launch Services database.\n");
       fprintf(stderr,"Try launching Unison from the Finder, and then try this again.\n",status);
     }
-    else fprintf(stderr,"Error: can't find Unison application (%d).\n",status);
+    else fprintf(stderr,"Error: can't find Unison application (%ld).\n",status);
     exit(1);
   }
 
   status = FSRefMakePath(&fsref,(UInt8 *)buf,BUFSIZE);
   if (status) {
-    fprintf(stderr,"Error: problem building path to Unison application (%d).\n",status);
+    fprintf(stderr,"Error: problem building path to Unison application (%ld).\n",status);
     exit(1);
   }
 

Modified: trunk/src/uimacnew09/cltool.c
===================================================================
--- trunk/src/uimacnew09/cltool.c	2010-03-12 22:47:16 UTC (rev 419)
+++ trunk/src/uimacnew09/cltool.c	2010-03-13 19:13:41 UTC (rev 420)
@@ -34,13 +34,13 @@
       fprintf(stderr,"Error: can't find the Unison application using the Launch Services database.\n");
       fprintf(stderr,"Try launching Unison from the Finder, and then try this again.\n",status);
     }
-    else fprintf(stderr,"Error: can't find Unison application (%d).\n",status);
+    else fprintf(stderr,"Error: can't find Unison application (%ld).\n",status);
     exit(1);
   }
 
   status = FSRefMakePath(&fsref,(UInt8 *)buf,BUFSIZE);
   if (status) {
-    fprintf(stderr,"Error: problem building path to Unison application (%d).\n",status);
+    fprintf(stderr,"Error: problem building path to Unison application (%ld).\n",status);
     exit(1);
   }
 



More information about the Unison-hackers mailing list