Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(653)

Unified Diff: gdb/tui/tui-out.c

Issue 124383005: GDB 7.6.50 (Closed) Base URL: http://git.chromium.org/native_client/nacl-gdb.git@upstream
Patch Set: Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « gdb/tui/tui-layout.c ('k') | gdb/tui/tui-regs.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gdb/tui/tui-out.c
diff --git a/gdb/tui/tui-out.c b/gdb/tui/tui-out.c
index 87311d8717bc574ae302fb55f538bc69910d514e..32cf6cbcefdb32250d0e127c035e686580e89d07 100644
--- a/gdb/tui/tui-out.c
+++ b/gdb/tui/tui-out.c
@@ -1,7 +1,6 @@
/* Output generating routines for GDB CLI.
- Copyright (C) 1999-2003, 2005, 2007-2012 Free Software Foundation,
- Inc.
+ Copyright (C) 1999-2013 Free Software Foundation, Inc.
Contributed by Cygnus Solutions.
Written by Fernando Nasser for Cygnus.
@@ -25,7 +24,7 @@
#include "ui-out.h"
#include "cli-out.h"
#include "tui.h"
-#include "gdb_string.h"
+#include <string.h>
#include "gdb_assert.h"
struct tui_ui_out_data
@@ -85,7 +84,7 @@ tui_field_string (struct ui_out *uiout,
if (data->base.suppress_output)
return;
- if (fldname && data->line > 0 && strcmp (fldname, "file") == 0)
+ if (fldname && data->line > 0 && strcmp (fldname, "fullname") == 0)
{
data->start_of_line ++;
if (data->line > 0)
« no previous file with comments | « gdb/tui/tui-layout.c ('k') | gdb/tui/tui-regs.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698