1
0
Fork 0
forked from len0rd/rockbox

Update version number to 0.8 ready for release. Also move the "Press ENTER to exit ipodpatcher" prompt to after the ipod_close() call.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12244 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Dave Chapman 2007-02-09 10:47:37 +00:00
parent c22e29f1c3
commit 6bd75aa0a5

View file

@ -29,7 +29,7 @@
#include "ipodpatcher.h"
#include "ipodio.h"
#define VERSION "0.8svn"
#define VERSION "0.8 with r12194-070204 bootloaders"
int verbose = 0;
@ -318,8 +318,6 @@ int main(int argc, char* argv[])
} else {
fprintf(stderr,"[ERR] --install failed.\n");
}
printf("Press ENTER to exit ipodpatcher :");
fgets(yesno,4,stdin);
}
}
#endif
@ -419,5 +417,13 @@ int main(int argc, char* argv[])
ipod_close(&ipod);
#ifdef WITH_BOOTOBJS
if (action==INTERACTIVE) {
printf("Press ENTER to exit ipodpatcher :");
fgets(yesno,4,stdin);
}
#endif
return 0;
}