# HG changeset patch # User Eric Warmenhoven # Date 988838687 0 # Node ID 18b16d29a1b3138cedd4272761758dd37458b1d4 # Parent 156ec40948725ce1d0cbff91452ab4944ff82ee8 [gaim-migrate @ 1807] More informational message when people aren't using gmake. diff -r 156ec4094872 -r 18b16d29a1b3 sounds/au2h.c --- a/sounds/au2h.c Wed May 02 09:57:55 2001 +0000 +++ b/sounds/au2h.c Wed May 02 21:24:47 2001 +0000 @@ -18,6 +18,11 @@ char file[256]; int offset = 0, cnt; + if (argc != 3) { + fprintf(stderr, "Too few arguments! Are you using gmake?\n"); + exit(1); + } + fd = open(argv[1], O_RDONLY); if (fd < 0) { perror("open");