From 8f11a1678a08209874327be08f5739480e91b69d Mon Sep 17 00:00:00 2001 From: David Betz Date: Sun, 8 Feb 2015 10:02:05 -0500 Subject: [PATCH] Move some code to a better location. --- p1load.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/p1load.c b/p1load.c index 41deb41..37592cc 100644 --- a/p1load.c +++ b/p1load.c @@ -83,7 +83,6 @@ static void cb_progress(void *data, int phase, int current) fflush(stdout); break; case LOAD_PHASE_DONE: - printf(" -- OK\n"); break; default: break; @@ -246,6 +245,7 @@ int main(int argc, char *argv[]) printf("Loading '%s' (%ld bytes)\n", file, imageSize); switch (PL_LoadSpinBinary(&state, loadType, image, imageSize)) { case LOAD_STS_OK: + printf(" -- OK\n"); break; case LOAD_STS_ERROR: printf(" -- Error\n");