diff options
author | Jim Blandy <jimb@codesourcery.com> | 2001-09-12 04:18:08 +0000 |
---|---|---|
committer | Jim Blandy <jimb@codesourcery.com> | 2001-09-12 04:18:08 +0000 |
commit | 664cccaec568e4dfc989d7c3f31b26e7fc9e2d8c (patch) | |
tree | fd06ee2073e55e7c48fb54d3e4ca4c38f4c89740 /gdb/printcmd.c | |
parent | 58712d0505174ca4fd5ae311a6789216bd0b742d (diff) | |
download | gdb-664cccaec568e4dfc989d7c3f31b26e7fc9e2d8c.zip gdb-664cccaec568e4dfc989d7c3f31b26e7fc9e2d8c.tar.gz gdb-664cccaec568e4dfc989d7c3f31b26e7fc9e2d8c.tar.bz2 |
* printcmd.c (print_scalar_formatted): Fix indentation.
Diffstat (limited to 'gdb/printcmd.c')
-rw-r--r-- | gdb/printcmd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/printcmd.c b/gdb/printcmd.c index bd0e28b..8ae6293 100644 --- a/gdb/printcmd.c +++ b/gdb/printcmd.c @@ -456,9 +456,9 @@ print_scalar_formatted (char *valaddr, struct type *type, int format, int size, case 'f': if (len == sizeof (float)) - type = builtin_type_float; + type = builtin_type_float; else if (len == sizeof (double)) - type = builtin_type_double; + type = builtin_type_double; print_floating (valaddr, type, stream); break; |