1 /*
2 * die.c - error handlers
3 * Copyright (c) Clemens Ladisch <clemens@ladisch.de>
4 *
5 * This program is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation, either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
17 */
18
19 #include "aconfig.h"
20 #include <stdio.h>
21 #include <stdlib.h>
22 #include <alsa/asoundlib.h>
23 #include "gettext_curses.h"
24 #include "mainloop.h"
25 #include "die.h"
26
fatal_error(const char * msg)27 void fatal_error(const char *msg)
28 {
29 app_shutdown();
30 fprintf(stderr, "%s\n", msg);
31 exit(EXIT_FAILURE);
32 }
33
fatal_alsa_error(const char * msg,int err)34 void fatal_alsa_error(const char *msg, int err)
35 {
36 app_shutdown();
37 fprintf(stderr, _("%s: %s\n"), msg, snd_strerror(err));
38 exit(EXIT_FAILURE);
39 }
40