diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 198d936636..9e7385fe01 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2003-01-27 Daniel Jacobowitz + + * maint.c [! (HAVE_MONSTARTUP && HAVE__MCLEANUP)] + (maintenance_set_profile_cmd): Use error () instead of warning (). + 2003-01-27 Daniel Jacobowitz * configure.in: Check that -pg works if using --enable-profiling. diff --git a/gdb/maint.c b/gdb/maint.c index 6240b49f2d..3595e184ab 100644 --- a/gdb/maint.c +++ b/gdb/maint.c @@ -692,7 +692,7 @@ maintenance_set_profile_cmd (char *args, int from_tty, struct cmd_list_element * static void maintenance_set_profile_cmd (char *args, int from_tty, struct cmd_list_element *c) { - warning ("Profiling support is not available on this system."); + error ("Profiling support is not available on this system."); } #endif