From 585b1086714dd9ac2789edb38c4d1820d23c806b Mon Sep 17 00:00:00 2001 From: Amar Takhar Date: Tue, 11 Jan 2011 21:50:27 +0000 Subject: [PATCH] Takes exactly 3 arguments it's not a minimum. Originally committed to SVN as r5178. --- aegisub/tools/common-respack.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aegisub/tools/common-respack.cpp b/aegisub/tools/common-respack.cpp index e7e213919..09762e3ce 100644 --- a/aegisub/tools/common-respack.cpp +++ b/aegisub/tools/common-respack.cpp @@ -55,7 +55,7 @@ inline void clean(std::string &str) { int main(int argc, const char *argv[]) { - // Need at least 3 arguments + // Needs 3 arguments if (argc != 4) { std::cout << "Usage: [in] [out]
[out]" << std::endl; return 1;