diff options
author | Diego Biurrun <diego@biurrun.de> | 2007-07-02 12:19:26 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2007-07-02 12:19:26 +0000 |
commit | 34359cab0db34b1ad840a9ca409f7ef1623a3558 (patch) | |
tree | a279fe5cbef272a1441de95af934e4669bae9c8d /libavformat/cutils.c | |
parent | 26e16be00e35b11ffe5f953554092bae8e09070c (diff) | |
download | ffmpeg-34359cab0db34b1ad840a9ca409f7ef1623a3558.tar.gz |
spelling cosmetics
Originally committed as revision 9459 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/cutils.c')
-rw-r--r-- | libavformat/cutils.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/cutils.c b/libavformat/cutils.c index dfc6f9c85e..06c941112f 100644 --- a/libavformat/cutils.c +++ b/libavformat/cutils.c @@ -62,7 +62,7 @@ time_t mktimegm(struct tm *tm) #define ISLEAP(y) (((y) % 4 == 0) && (((y) % 100) != 0 || ((y) % 400) == 0)) #define LEAPS_COUNT(y) ((y)/4 - (y)/100 + (y)/400) -/* this is our own gmtime_r. it differs from its POSIX counterpart in a +/* This is our own gmtime_r. It differs from its POSIX counterpart in a couple of places, though. */ struct tm *brktimegm(time_t secs, struct tm *tm) { |