one line fix by Gregory Lielens <Gregory.Lielens@fft.be> to fix a problem

with the printing of complex numbers (it would print the real part twice).
This commit is contained in:
David Taylor
2000-05-23 15:56:33 +00:00
parent f5ff8c83c8
commit 9af9729377
2 changed files with 6 additions and 1 deletions

View File

@@ -564,7 +564,7 @@ f_val_print (type, valaddr, embedded_offset, address, stream, format, deref_ref,
fputs_filtered ("(", stream);
print_floating (valaddr, type, stream);
fputs_filtered (",", stream);
print_floating (valaddr, type, stream);
print_floating (valaddr + TYPE_LENGTH (type), type, stream);
fputs_filtered (")", stream);
break;