commit d15866192f50b94ff1cb4deabbfba7030add87d3
parent 1567b7d2b7c2580ac615dd5a2e1000b2f4788260
Author: ByteProject <stefan.vogt@byteproject.net>
Date: Mon, 13 Feb 2012 23:02:08 +0100
one cosmetic change and removed thumbnails code
Diffstat:
1 file changed, 1 insertion(+), 6 deletions(-)
diff --git a/ansilove/main.c b/ansilove/main.c
@@ -110,7 +110,7 @@ int main(int argc, char *argv[])
// record == NULL means there is no file, we can stop here
if (record == NULL) {
- printf("File %s not found.\n\n", argv[1]);
+ printf("\nFile %s not found.\n\n", argv[1]);
return EXIT_FAILURE;
}
@@ -210,11 +210,6 @@ int main(int argc, char *argv[])
}
}
- // in case the thumbnail flag is set, append THUMBNAILS_TAG
- if (strcmp(bits, "thumbnail") == 0) {
- sprintf(output, "%s%s.png", strtolower(argv[1]), THUMBNAILS_TAG);
- }
-
// report all flags to the command line
printf("\nInput File: %s\n", input);
printf("Output File: %s\n", output);