]> sigrok.org Git - libserialport.git/commitdiff
Remove stray periods from debug messages.
authorMartin Ling <redacted>
Sat, 7 Dec 2013 20:18:27 +0000 (20:18 +0000)
committerMartin Ling <redacted>
Sat, 7 Dec 2013 20:18:27 +0000 (20:18 +0000)
serialport.c

index 712b951daad2b765e3b661a6b506bbedd0aec54a..95d9cfb13b9308e9ea8a78248fcc07d45b51df41 100644 (file)
@@ -541,7 +541,7 @@ out:
                *list_ptr = list;
                RETURN_OK();
        case SP_ERR_SUPP:
-               DEBUG_ERROR(SP_ERR_SUPP, "Enumeration not supported on this platform.");
+               DEBUG_ERROR(SP_ERR_SUPP, "Enumeration not supported on this platform");
        default:
                if (list)
                        sp_free_port_list(list);
@@ -1015,12 +1015,12 @@ enum sp_return sp_nonblocking_write(struct sp_port *port, const void *buf, size_
                                RETURN_FAIL("WriteFile() failed");
                        }
                } else {
-                       DEBUG("Single byte written immediately.");
+                       DEBUG("Single byte written immediately");
                        written++;
                }
        }
 
-       DEBUG("All bytes written immediately.");
+       DEBUG("All bytes written immediately");
 
        RETURN_VALUE("%d", written);
 #else