From c645be35235e3f0afa6923e51ac59b0dc3d0107f Mon Sep 17 00:00:00 2001 From: Ingo Weinhold Date: Tue, 23 Feb 2010 19:00:52 +0000 Subject: [PATCH] Fixed getopt string. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@35589 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/bin/debug/profile/profile.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/debug/profile/profile.cpp b/src/bin/debug/profile/profile.cpp index 4f169b6076..67e14d7190 100644 --- a/src/bin/debug/profile/profile.cpp +++ b/src/bin/debug/profile/profile.cpp @@ -996,7 +996,7 @@ main(int argc, const char* const* argv) }; 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;