amsinfo: save files with .bin extension

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@31219 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Rafaël Carré 2011-12-13 03:01:16 +00:00
parent 184459fa54
commit 62e0cdca26
1 changed files with 2 additions and 2 deletions

View File

@ -227,9 +227,9 @@ static void show_lib(size_t off)
color(BLUE);
printf("\tBASE 0x%.8x (code + 0x%x) END 0x%.8x : SIZE 0x%.8x\n",start, 0x18 + i*4, stop, stop - start);
char name[12+1];
char name[12+sizeof(".bin")];
memcpy(name,&buf[off+get32le(off)],12);
name[12] = '\0';
strcpy(&name[12], ".bin");
FILE *out = fopen(name,"w");
if(!out)