summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDenys Vlasenko <dvlasenk@redhat.com>2010-10-13 12:07:46 +0200
committerDenys Vlasenko <dvlasenk@redhat.com>2010-10-13 12:07:46 +0200
commitc196f8b3f8013259f5ef6ffce90277c99077641c (patch)
tree64ac5da2a52d123603d88b439901e5f3bd8754b6
parentae7f458689a5c99f67172e243f5f4a6b9047e016 (diff)
downloadabrt-c196f8b3f8013259f5ef6ffce90277c99077641c.tar.gz
abrt-c196f8b3f8013259f5ef6ffce90277c99077641c.tar.xz
abrt-c196f8b3f8013259f5ef6ffce90277c99077641c.zip
trivial cleanups
Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
-rw-r--r--lib/plugins/CCpp.cpp1
-rw-r--r--src/daemon/abrt-action-generate-backtrace.c8
2 files changed, 4 insertions, 5 deletions
diff --git a/lib/plugins/CCpp.cpp b/lib/plugins/CCpp.cpp
index 48bbbb5d..10717ecc 100644
--- a/lib/plugins/CCpp.cpp
+++ b/lib/plugins/CCpp.cpp
@@ -19,7 +19,6 @@
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#include <set>
-#include <iomanip>
#include "abrtlib.h"
#include "CCpp.h"
#include "abrt_exception.h"
diff --git a/src/daemon/abrt-action-generate-backtrace.c b/src/daemon/abrt-action-generate-backtrace.c
index b87c7c9e..f46ef7d3 100644
--- a/src/daemon/abrt-action-generate-backtrace.c
+++ b/src/daemon/abrt-action-generate-backtrace.c
@@ -252,10 +252,10 @@ enum {
/* Keep enum above and order of options below in sync! */
static struct options abrt_action_generate_backtrace_options[] = {
OPT__VERBOSE(&g_verbose),
- OPT_STRING( 'd' , 0, &dump_dir_name, "dir", "Crash dump directory"),
- OPT_STRING( 'i' , 0, &i_opt, "dir1[:dir2]...", "Additional debuginfo directories"),
- OPT_INTEGER( 't' , 0, &exec_timeout_sec, "Kill gdb if it runs for more than SECONDS"),
- OPT_BOOL( 's' , 0, NULL, "Log to syslog even with -d"),
+ OPT_STRING( 'd', NULL, &dump_dir_name, "DIR", "Crash dump directory"),
+ OPT_STRING( 'i', NULL, &i_opt, "dir1[:dir2]...", "Additional debuginfo directories"),
+ OPT_INTEGER('t', NULL, &exec_timeout_sec, "Kill gdb if it runs for more than N seconds"),
+ OPT_BOOL( 's', NULL, NULL, "Log to syslog"),
OPT_END()
};