You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
595 B

  1. --- a/zip.c
  2. +++ b/zip.c
  3. @@ -1028,8 +1028,7 @@ local void help_extended()
  4. for (i = 0; i < sizeof(text)/sizeof(char *); i++)
  5. {
  6. - printf(text[i]);
  7. - putchar('\n');
  8. + puts(text[i]);
  9. }
  10. #ifdef DOS
  11. check_for_windows("Zip");
  12. @@ -1225,8 +1224,7 @@ local void version_info()
  13. CR_MAJORVER, CR_MINORVER, CR_BETA_VER, CR_VERSION_DATE);
  14. for (i = 0; i < sizeof(cryptnote)/sizeof(char *); i++)
  15. {
  16. - printf(cryptnote[i]);
  17. - putchar('\n');
  18. + puts(cryptnote[i]);
  19. }
  20. ++i; /* crypt support means there IS at least one compilation option */
  21. #endif /* CRYPT */