diff options
| author | Jim Blandy | 1993-03-02 08:16:49 +0000 |
|---|---|---|
| committer | Jim Blandy | 1993-03-02 08:16:49 +0000 |
| commit | 8b24d146ec26a89533bf694a8c4db84d7a13cfc6 (patch) | |
| tree | 6a8f0c07f5d72f713f3cb8908cd792c086a103ca /src | |
| parent | f498e3b2edcd6cb2d96b0b02339ea0dfad3500be (diff) | |
| download | emacs-8b24d146ec26a89533bf694a8c4db84d7a13cfc6.tar.gz emacs-8b24d146ec26a89533bf694a8c4db84d7a13cfc6.zip | |
* print.c (float_to_string): Define buf to be an unsigned char, to
match the data field of strings.
Diffstat (limited to 'src')
| -rw-r--r-- | src/print.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/print.c b/src/print.c index 573b5d3f7d3..a43a774c0f4 100644 --- a/src/print.c +++ b/src/print.c | |||
| @@ -603,7 +603,7 @@ to make it write to the debugging output.\n") | |||
| 603 | 603 | ||
| 604 | void | 604 | void |
| 605 | float_to_string (buf, data) | 605 | float_to_string (buf, data) |
| 606 | char *buf; | 606 | unsigned char *buf; |
| 607 | double data; | 607 | double data; |
| 608 | { | 608 | { |
| 609 | register unsigned char *cp, c; | 609 | register unsigned char *cp, c; |