This is the mail archive of the gdb-patches@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[obv] A comment fix.


Hi,
When reading the comment to var_zinteger in enum var_types, I think
it is wrong.  This patch is to fix it.  It is obvious, and I'll apply
it.

gdb:

2012-07-18  Yao Qi  <yao@codesourcery.com>

	* command.h: Fix comment to enum var_types.
---
 gdb/command.h |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/gdb/command.h b/gdb/command.h
index 5a207bd..30c0eb2 100644
--- a/gdb/command.h
+++ b/gdb/command.h
@@ -93,7 +93,7 @@ typedef enum var_types
     /* String which stores a filename.  (*VAR) is a malloc'd
        string.  */
     var_filename,
-    /* ZeroableInteger.  *VAR is an int.  Like Unsigned Integer except
+    /* ZeroableInteger.  *VAR is an int.  Like var_integer except
        that zero really means zero.  */
     var_zinteger,
     /* ZeroableUnsignedInteger.  *VAR is an unsigned int.  Zero really
-- 
1.7.7.6


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]