aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJim Blandy1993-03-02 08:16:49 +0000
committerJim Blandy1993-03-02 08:16:49 +0000
commit8b24d146ec26a89533bf694a8c4db84d7a13cfc6 (patch)
tree6a8f0c07f5d72f713f3cb8908cd792c086a103ca /src
parentf498e3b2edcd6cb2d96b0b02339ea0dfad3500be (diff)
downloademacs-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.c2
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
604void 604void
605float_to_string (buf, data) 605float_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;