Browse code

10l: Add misssing CR/LF.

Carl Eugen Hoyos authored on 2011/04/23 17:41:44
Showing 1 changed files
... ...
@@ -92,7 +92,7 @@ void ff_read_chan_chunk(AVFormatContext *s, int64_t size, AVCodecContext *codec)
92 92
     const CafChannelLayout *caf_layout = caf_channel_layout;
93 93
     if (size != 12) {
94 94
         // Channel descriptions not implemented
95
-        av_log_ask_for_sample(s, "Unimplemented channel layout.");
95
+        av_log_ask_for_sample(s, "Unimplemented channel layout.\n");
96 96
         avio_skip(pb, size);
97 97
         return;
98 98
     }
... ...
@@ -110,7 +110,7 @@ void ff_read_chan_chunk(AVFormatContext *s, int64_t size, AVCodecContext *codec)
110 110
         caf_layout++;
111 111
     }
112 112
     if (!codec->channel_layout)
113
-        av_log(s, AV_LOG_WARNING, "Unknown channel layout.");
113
+        av_log(s, AV_LOG_WARNING, "Unknown channel layout.\n");
114 114
     avio_skip(pb, 8);
115 115
 }
116 116