summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--rbutil/sansapatcher/main.c4
-rw-r--r--rbutil/sansapatcher/sansapatcher.c4
2 files changed, 3 insertions, 5 deletions
diff --git a/rbutil/sansapatcher/main.c b/rbutil/sansapatcher/main.c
index b2b50270a7..4253474b76 100644
--- a/rbutil/sansapatcher/main.c
+++ b/rbutil/sansapatcher/main.c
@@ -30,7 +30,7 @@
30#include "sansaio.h" 30#include "sansaio.h"
31#include "parttypes.h" 31#include "parttypes.h"
32 32
33#define VERSION "0.3 with v2 bootloader" 33#define VERSION "0.4-svn"
34 34
35unsigned char* sectorbuf; 35unsigned char* sectorbuf;
36 36
@@ -259,8 +259,6 @@ int main(int argc, char* argv[])
259 return 3; 259 return 3;
260 } 260 }
261 261
262 fprintf(stderr,"[INFO] Sansa %s detected\n",sansa.targetname);
263
264 if (sansa.hasoldbootloader) { 262 if (sansa.hasoldbootloader) {
265 printf("[ERR] ************************************************************************\n"); 263 printf("[ERR] ************************************************************************\n");
266 printf("[ERR] *** OLD ROCKBOX INSTALLATION DETECTED, ABORTING.\n"); 264 printf("[ERR] *** OLD ROCKBOX INSTALLATION DETECTED, ABORTING.\n");
diff --git a/rbutil/sansapatcher/sansapatcher.c b/rbutil/sansapatcher/sansapatcher.c
index b3a0289c15..1f74067344 100644
--- a/rbutil/sansapatcher/sansapatcher.c
+++ b/rbutil/sansapatcher/sansapatcher.c
@@ -517,9 +517,9 @@ int sansa_scan(struct sansa_t* sansa)
517 } 517 }
518 518
519#ifdef __WIN32__ 519#ifdef __WIN32__
520 printf("[INFO] E200 found - disk device %d\n",i); 520 printf("[INFO] %s found - disk device %d\n",sansa->targetname, i);
521#else 521#else
522 printf("[INFO] E200 found - %s\n",sansa->diskname); 522 printf("[INFO] %s found - %s\n",sansa->targetname, sansa->diskname);
523#endif 523#endif
524 n++; 524 n++;
525 strcpy(last_disk,sansa->diskname); 525 strcpy(last_disk,sansa->diskname);