diff options
author | Andrew Cagney <cagney@redhat.com> | 2002-09-29 15:25:30 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2002-09-29 15:25:30 +0000 |
commit | 89396210455da37ec37c86d27bd3979bfb031713 (patch) | |
tree | 53267af4552a2d8ad6038e6643f93e12bca09f49 /gdb/gnu-nat.h | |
parent | 0aee02e4183ab12dad124c6ceb63c9eea93d206a (diff) | |
download | gdb-89396210455da37ec37c86d27bd3979bfb031713.zip gdb-89396210455da37ec37c86d27bd3979bfb031713.tar.gz gdb-89396210455da37ec37c86d27bd3979bfb031713.tar.bz2 |
Zap __FUNCTION__.
Diffstat (limited to 'gdb/gnu-nat.h')
-rw-r--r-- | gdb/gnu-nat.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/gnu-nat.h b/gdb/gnu-nat.h index cc43083..bcdfe6e 100644 --- a/gdb/gnu-nat.h +++ b/gdb/gnu-nat.h @@ -96,6 +96,6 @@ extern int gnu_debug_flag; #define debug(msg, args...) \ do { if (gnu_debug_flag) \ - fprintf_unfiltered (gdb_stdlog, "%s: " msg "\r\n", __FUNCTION__ , ##args); } while (0) + fprintf_unfiltered (gdb_stdlog, "%s:%d: " msg "\r\n", __FILE__ , __LINE__ , ##args); } while (0) #endif /* __GNU_NAT_H__ */ |