diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2014-09-21 15:26:38 +0200 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2014-09-21 15:26:38 +0200 |
commit | a0bbc1d61bff38e5db76d3e11813551977411543 (patch) | |
tree | d48d7c0c14f51fe1bad9bba0d621cf1ecf50bf07 | |
parent | 3e49890821a48e7e5e6b6c13f17c4385f4909675 (diff) | |
download | toolame-dab-a0bbc1d61bff38e5db76d3e11813551977411543.tar.gz toolame-dab-a0bbc1d61bff38e5db76d3e11813551977411543.tar.bz2 toolame-dab-a0bbc1d61bff38e5db76d3e11813551977411543.zip |
Remove email address from 'program broken' error
-rw-r--r-- | toolame.c | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -502,9 +502,8 @@ int main (int argc, char **argv) fprintf (stderr, "Sent %ld bits = %ld slots plus %ld\n", frameBits, frameBits / 8, frameBits % 8); fprintf (stderr, "If you are reading this, the program is broken\n"); - fprintf (stderr, "email [mfc at NOTplanckenerg.com] without the NOT\n"); - fprintf (stderr, "with the command line arguments and other info\n"); - exit (0); + fprintf (stderr, "Please report a bug.\n"); + exit(1); } sentBits += frameBits; |