diff options
Diffstat (limited to 'gdb/doublest.c')
-rw-r--r-- | gdb/doublest.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/doublest.c b/gdb/doublest.c index 265e692..e4dbb2a 100644 --- a/gdb/doublest.c +++ b/gdb/doublest.c @@ -652,7 +652,7 @@ floatformat_from_length (int len) format = NULL; if (format == NULL) error ("Unrecognized %d-bit floating-point type.", - len & TARGET_CHAR_BIT); + len * TARGET_CHAR_BIT); return format; } |