Replace french "octet" with "byte"
authorNathael Pajani <nathael.pajani@ed3l.fr>
Sat, 16 Feb 2019 13:16:40 +0000 (14:16 +0100)
committerNathael Pajani <nathael.pajani@ed3l.fr>
Sat, 16 Feb 2019 13:16:40 +0000 (14:16 +0100)
isp_utils.c
isp_wrapper.c

index 9f37c8e..3488db3 100644 (file)
@@ -144,7 +144,7 @@ int isp_serial_write(const char* buf, unsigned int buf_size)
        unsigned int loops = 0; /* Used to create a timeout */
 
        if (trace_on) {
-               printf("Sending %d octet(s) :\n", buf_size);
+               printf("Sending %d byte(s) :\n", buf_size);
                isp_dump((unsigned char*)buf, buf_size);
        }
        do {
@@ -266,7 +266,7 @@ int isp_serial_read(char* buf, unsigned int buf_size, unsigned int min_read)
        } while (count < min_read);
 
        if (trace_on) {
-               printf("Received %d octet(s) :\n", count);
+               printf("Received %d byte(s) :\n", count);
                isp_dump((unsigned char*)buf, count);
        }
        return count;
index 42dd99d..0acf91c 100644 (file)
@@ -143,7 +143,7 @@ int isp_cmd_write_to_ram(int arg_count, char** args)
        }
 
        if (trace_on) {
-               printf("Read %d octet(s) from input file\n", bytes_read);
+               printf("Read %d byte(s) from input file\n", bytes_read);
        }
 
        /* Pad data size to 4 */