summaryrefslogtreecommitdiff
path: root/Misc/gdbinit
diff options
context:
space:
mode:
Diffstat (limited to 'Misc/gdbinit')
-rw-r--r--Misc/gdbinit4
1 files changed, 2 insertions, 2 deletions
diff --git a/Misc/gdbinit b/Misc/gdbinit
index 9484b51824..3b6fe50ef9 100644
--- a/Misc/gdbinit
+++ b/Misc/gdbinit
@@ -150,10 +150,10 @@ end
# generally useful macro to print a Unicode string
def pu
- set $uni = $arg0
+ set $uni = $arg0
set $i = 0
while (*$uni && $i++<100)
- if (*$uni < 0x80)
+ if (*$uni < 0x80)
print *(char*)$uni++
else
print /x *(short*)$uni++