[FFmpeg-cvslog] cws2fws: Improve error message wording.
Diego Biurrun
git at videolan.org
Tue May 17 05:19:50 CEST 2011
ffmpeg | branch: master | Diego Biurrun <diego at biurrun.de> | Sun May 15 22:17:35 2011 +0200| [c540061f3f552daa3724289b59b0a7a3692ad740] | committer: Diego Biurrun
cws2fws: Improve error message wording.
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=c540061f3f552daa3724289b59b0a7a3692ad740
---
tools/cws2fws.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/tools/cws2fws.c b/tools/cws2fws.c
index 5fa5147..b8535fe 100644
--- a/tools/cws2fws.c
+++ b/tools/cws2fws.c
@@ -35,14 +35,14 @@ int main(int argc, char *argv[])
fd_in = open(argv[1], O_RDONLY);
if (fd_in < 0)
{
- perror("Error while opening: ");
+ perror("Error opening input file");
exit(1);
}
fd_out = open(argv[2], O_WRONLY|O_CREAT, 00644);
if (fd_out < 0)
{
- perror("Error while opening: ");
+ perror("Error opening output file");
close(fd_in);
exit(1);
}
More information about the ffmpeg-cvslog
mailing list