space cleanup

This commit is contained in:
marschap
2005-05-26 17:41:54 +00:00
parent 8296d0b716
commit 3658cedc35
+1 -2
View File
@@ -254,7 +254,7 @@ void Sync_Read_Buffer(int fd, unsigned char expected_bytes)
// ToDo: check that expected_bytes < sizeof(Incoming)
BytesRead = read(fd, Incoming, expected_bytes);
if (BytesRead == -1){
if (BytesRead == -1) {
/* printf("~~~Problem reading: %s .\n", strerror(errno)); */
}
else {
@@ -316,7 +316,6 @@ unsigned char DiscardGetByte(void)
{
unsigned char return_byte = '\0';
/* wrap read pointer to the receive buffer */
ReceiveBufferTail %= RECEIVEBUFFERSIZE;