From f05040fa187e1ac30a59c94984eb5f8a94f60116 Mon Sep 17 00:00:00 2001 From: Kongqun Yang Date: Fri, 24 Jan 2014 13:21:33 -0800 Subject: [PATCH] Fix a misspelling of the flags name. Change-Id: I0cd889ed3b31e722860c313536b01449746bd71c --- app/packager_main.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/packager_main.cc b/app/packager_main.cc index d8bd1e5dba..2795047da6 100644 --- a/app/packager_main.cc +++ b/app/packager_main.cc @@ -125,7 +125,7 @@ bool AddStreamToMuxer(const std::vector& streams, Muxer* muxer) { DCHECK(muxer); if (!FLAGS_video && !FLAGS_audio) { - LOG(ERROR) << "Required: add_video_stream or add_audio_stream."; + LOG(ERROR) << "Required: --audio or --video."; return false; }