diff options
author | Luca Barbato <lu_zero@gentoo.org> | 2014-03-28 00:40:43 +0100 |
---|---|---|
committer | Luca Barbato <lu_zero@gentoo.org> | 2014-03-28 00:40:43 +0100 |
commit | 85698be461c07be10d873dd34348bcfe9ffc56e0 (patch) | |
tree | 196e2f040fbc87d56b6ceccd00b351027dd036a1 | |
parent | e8e560f2a20e59789cafef174b382054ad9721ea (diff) | |
download | ffmpeg-85698be461c07be10d873dd34348bcfe9ffc56e0.tar.gz |
cmdutils: Mark exit_program as av_noreturn
-rw-r--r-- | cmdutils.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmdutils.h b/cmdutils.h index f1b69f95b7..d90ad4549d 100644 --- a/cmdutils.h +++ b/cmdutils.h @@ -52,7 +52,7 @@ void register_exit(void (*cb)(int ret)); /** * Wraps exit with a program-specific cleanup routine. */ -void exit_program(int ret); +void exit_program(int ret) av_noreturn; /** * Initialize the cmdutils option system, in particular |