[Box Backup-commit] COMMIT r2058 - box/trunk/bin/bbackupquery

boxbackup-dev at fluffy.co.uk boxbackup-dev at fluffy.co.uk
Wed Jan 23 21:18:07 GMT 2008


Author: chris
Date: 2008-01-23 21:18:07 +0000 (Wed, 23 Jan 2008)
New Revision: 2058

Modified:
   box/trunk/bin/bbackupquery/makedocumentation.pl.in
Log:
Fix warnings on HPPA due to assigning static strings to non-const
char *. Thanks to Reinhard Tartler and the Debian project buildds.


Modified: box/trunk/bin/bbackupquery/makedocumentation.pl.in
===================================================================
--- box/trunk/bin/bbackupquery/makedocumentation.pl.in	2008-01-23 21:16:56 UTC (rev 2057)
+++ box/trunk/bin/bbackupquery/makedocumentation.pl.in	2008-01-23 21:18:07 UTC (rev 2058)
@@ -40,7 +40,7 @@
 
 #include "MemLeakFindOn.h"
 
-char *help_commands[] =
+const char *help_commands[] =
 {
 __E
 
@@ -53,7 +53,7 @@
 	0
 };
 
-char *help_text[] =
+const char *help_text[] =
 {
 __E
 




More information about the Boxbackup-commit mailing list