Fix formatting of some error messages.

This commit is contained in:
David Betz 2015-02-08 09:18:23 -05:00
parent 88fe22e85b
commit 7f4f8c7fd4
1 changed files with 3 additions and 3 deletions

View File

@ -248,13 +248,13 @@ int main(int argc, char *argv[])
case LOAD_STS_OK:
break;
case LOAD_STS_ERROR:
printf("Error\n");
printf(" -- Error\n");
break;
case LOAD_STS_TIMEOUT:
printf("Timeout\n");
printf(" -- Timeout\n");
break;
default:
printf("Internal error\n");
printf(" -- Internal error\n");
break;
}
}