diff options
author | Matt Colyer | 2008-08-18 09:06:56 -0700 |
---|---|---|
committer | Matt Colyer | 2008-08-18 09:06:56 -0700 |
commit | bc68ec7c3b8d37a2d3b8127e5591e9b505fd14cd (patch) | |
tree | 4cb7a3839798b8523bb37d48507707edf0a75a35 | |
parent | 0a50a87d68267274cbcefc05145e26ec444dcfae (diff) | |
download | libplist-bc68ec7c3b8d37a2d3b8127e5591e9b505fd14cd.tar.gz libplist-bc68ec7c3b8d37a2d3b8127e5591e9b505fd14cd.tar.bz2 |
Cleaned up the status message in initconf.
-rw-r--r-- | src/initconf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/initconf.c b/src/initconf.c index a8d56e4..8944ab4 100644 --- a/src/initconf.c +++ b/src/initconf.c @@ -63,7 +63,7 @@ void progress_bar(gpointer mutex){ while (!g_static_mutex_trylock((GStaticMutex*)mutex)){ usleep(500000); - printf("Generating root key... %c\r", spinner[i++]); + printf("Generating key... %c\r", spinner[i++]); fflush(stdout); if (i > 8) i = 0; } |