diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-01-03 14:31:25 +0000 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-01-03 14:31:25 +0000 |
commit | 41600690673d6e49026c3309c708d6da17c603c6 (patch) | |
tree | 48ec152b08d9c23f95546ac413083902f26f1abd /libavformat/avformat.h | |
parent | 8040c3b25085999042fe97763bc7367f05898599 (diff) | |
download | ffmpeg-41600690673d6e49026c3309c708d6da17c603c6.tar.gz |
Prefer "*FUNC_NAME(" over "* FUNC_NAME(" for XXX_configuration() and
XXX_license() functions, consistent with the rest of FFmpeg.
Originally committed as revision 21005 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/avformat.h')
-rw-r--r-- | libavformat/avformat.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/avformat.h b/libavformat/avformat.h index a21cfa4360..f13a09950a 100644 --- a/libavformat/avformat.h +++ b/libavformat/avformat.h @@ -43,12 +43,12 @@ unsigned avformat_version(void); /** * Returns the libavformat build-time configuration. */ -const char * avformat_configuration(void); +const char *avformat_configuration(void); /** * Returns the libavformat license. */ -const char * avformat_license(void); +const char *avformat_license(void); #include <time.h> #include <stdio.h> /* FILE */ |