]> git.donarmstrong.com Git - lilypond.git/commitdiff
opps. short option should be
authorHan-Wen Nienhuys <hanwen@xs4all.nl>
Fri, 30 Jul 2004 16:59:30 +0000 (16:59 +0000)
committerHan-Wen Nienhuys <hanwen@xs4all.nl>
Fri, 30 Jul 2004 16:59:30 +0000 (16:59 +0000)
char, not int.

ChangeLog
flower/include/getopt-long.hh

index c6e5b9d8e5c18ec79ef9a00a8a90727ec3fedbee..80147522c92fd9c7417e5c688e637472b2f5f73a 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 2004-07-30  Han-Wen Nienhuys   <hanwen@xs4all.nl>
 
+       * flower/include/getopt-long.hh: opps. short option should be
+       char, not int.
+
        * Documentation/user/GNUmakefile: use symlinks to save space.
 
        * VERSION: 2.3.9 released.
index 4387e579327a41c69fbdf99d3ed3071a47668bfc..2b6747e490279cf26a24f8e5501d29ad5980999b 100644 (file)
@@ -5,16 +5,16 @@
 #include "string.hh"
 
 /**
-  a struct this for initialising the commandline options.
- */
+   a struct this for initialising the commandline options.
+*/
 struct Long_option_init {
   char const * take_arg_str0_;
   char const * longname_str0_;
 
   /*
-    > 255: don't take short version.
-   */
-  int        shortname_char_;
+    = 0: don't take short version.
+  */
+  char shortname_char_;
 
   char const * help_str0_;