[haiku-commits] r35589 - haiku/trunk/src/bin/debug/profile

  • From: ingo_weinhold@xxxxxx
  • To: haiku-commits@xxxxxxxxxxxxx
  • Date: Tue, 23 Feb 2010 20:00:52 +0100 (CET)

Author: bonefish
Date: 2010-02-23 20:00:52 +0100 (Tue, 23 Feb 2010)
New Revision: 35589
Changeset: http://dev.haiku-os.org/changeset/35589/haiku

Modified:
   haiku/trunk/src/bin/debug/profile/profile.cpp
Log:
Fixed getopt string.


Modified: haiku/trunk/src/bin/debug/profile/profile.cpp
===================================================================
--- haiku/trunk/src/bin/debug/profile/profile.cpp       2010-02-23 17:26:47 UTC 
(rev 35588)
+++ haiku/trunk/src/bin/debug/profile/profile.cpp       2010-02-23 19:00:52 UTC 
(rev 35589)
@@ -996,7 +996,7 @@
                };
 
                opterr = 0; // don't print errors
-               int c = getopt_long(argc, (char**)argv, "+acCfhi:klo:rsS:v:",
+               int c = getopt_long(argc, (char**)argv, "+acCfhi:klo:rs:Sv:",
                        sLongOptions, NULL);
                if (c == -1)
                        break;


Other related posts:

  • » [haiku-commits] r35589 - haiku/trunk/src/bin/debug/profile - ingo_weinhold