]> sourceware.org Git - newlib-cygwin.git/commitdiff
Fix definition of write() to use const char * for the type of the buffer
authorJozef Lawrynowicz <jozef.l@mittosystems.com>
Fri, 12 Apr 2019 10:49:11 +0000 (11:49 +0100)
committerCorinna Vinschen <corinna@vinschen.de>
Mon, 15 Apr 2019 12:21:59 +0000 (14:21 +0200)
libgloss/msp430/write.c

index 3a5a9f8103cbcac97b61e5f0ca9c06720c4aaec0..3e1086c001d182d8138ae8e1abd9bd539f6a1f3d 100644 (file)
@@ -16,7 +16,7 @@
 #include "cio.h"
 
 static int
-write_chunk (int fd, char *buf, int len)
+write_chunk (int fd, const char *buf, int len)
 {
   __CIOBUF__.length[0] = len;
   __CIOBUF__.length[1] = len >> 8;
@@ -35,10 +35,11 @@ write_chunk (int fd, char *buf, int len)
 #include <stdio.h>
 
 int
-write (int fd, char *buf, int len)
+write (int fd, const char *buf, int len)
 {
   int rv = 0;
   int c;
+  int i = 0;
 #if 0
   if (fd == 2)
     fprintf (stderr, "%.*s", buf, len);
@@ -48,12 +49,12 @@ write (int fd, char *buf, int len)
   while (len > 0)
     {
       int l = (len > CIO_BUF_SIZE) ? CIO_BUF_SIZE : len;
-      c = write_chunk (fd, buf, l);
+      c = write_chunk (fd, buf + i, l);
       if (c < 0)
        return c;
       rv += l;
       len -= l;
-      buf += l;
+      i += l;
     }
   return rv;
 }
This page took 0.032149 seconds and 5 git commands to generate.