core: fix serial error #defines

Should have ERROR in them.
This commit is contained in:
Dan Williams
2010-04-24 23:44:35 -07:00
parent b9bb12a01e
commit a4c094c340
7 changed files with 24 additions and 26 deletions

View File

@@ -20,10 +20,10 @@
#include <glib-object.h>
enum {
MM_SERIAL_OPEN_FAILED = 0,
MM_SERIAL_SEND_FAILED = 1,
MM_SERIAL_RESPONSE_TIMEOUT = 2,
MM_SERIAL_OPEN_FAILED_NO_DEVICE = 3,
MM_SERIAL_ERROR_OPEN_FAILED = 0,
MM_SERIAL_ERROR_SEND_FAILED = 1,
MM_SERIAL_ERROR_RESPONSE_TIMEOUT = 2,
MM_SERIAL_ERROR_OPEN_FAILED_NO_DEVICE = 3,
MM_SERIAL_ERROR_FLASH_FAILED = 4,
};