diff options
author | Martin Storsjö <martin@martin.st> | 2010-03-25 07:14:41 +0000 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2010-03-25 07:14:41 +0000 |
commit | d8f9295753f3ff9424bfde8907b9e865d46a8231 (patch) | |
tree | bc2dc1211c2d039706821821e96016747d6db9cb /libavformat/utils.c | |
parent | ddbeb95447d237bd82a2234d15561ae2eeb88a4c (diff) | |
download | ffmpeg-d8f9295753f3ff9424bfde8907b9e865d46a8231.tar.gz |
Reindent
Originally committed as revision 22666 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/utils.c')
-rw-r--r-- | libavformat/utils.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavformat/utils.c b/libavformat/utils.c index dbcdab18c3..2c06e66666 100644 --- a/libavformat/utils.c +++ b/libavformat/utils.c @@ -3468,9 +3468,9 @@ char *ff_data_to_hex(char *buff, const uint8_t *src, int s, int lowercase) { int i; static const char hex_table_uc[16] = { '0', '1', '2', '3', - '4', '5', '6', '7', - '8', '9', 'A', 'B', - 'C', 'D', 'E', 'F' }; + '4', '5', '6', '7', + '8', '9', 'A', 'B', + 'C', 'D', 'E', 'F' }; static const char hex_table_lc[16] = { '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'a', 'b', |