Spelling correction.

This commit is contained in:
Khalid El Fathi 2012-04-04 10:46:11 +02:00 committed by Jef Driesen
parent 0f83d6ae23
commit 3882827736
2 changed files with 2 additions and 2 deletions

View File

@ -91,7 +91,7 @@ mares_common_convert_ascii_to_binary (const unsigned char input[], unsigned int
else if (ascii >= 'a' && ascii <= 'f')
number = 10 + ascii - 'a';
else
WARNING ("Invalid charachter.");
WARNING ("Invalid character.");
value <<= 4;
value += number;

View File

@ -413,7 +413,7 @@ uwatec_memomouse_dump_internal (uwatec_memomouse_device_t *device, dc_buffer_t *
// Wait for the answer (ACK).
n = serial_read (device->port, &answer, 1);
if (n != 1) {
WARNING ("Failed to recieve the answer.");
WARNING ("Failed to receive the answer.");
return EXITCODE (n);
}
}