OSDN Git Service

spelling cosmetics
authorDiego Biurrun <diego@biurrun.de>
Mon, 2 Jul 2007 12:19:26 +0000 (12:19 +0000)
committerDiego Biurrun <diego@biurrun.de>
Mon, 2 Jul 2007 12:19:26 +0000 (12:19 +0000)
Originally committed as revision 9459 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavformat/cutils.c

index dfc6f9c..06c9411 100644 (file)
@@ -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)
 {