From b7c606a20063d600708e82ee9ad65d128dab77aa Mon Sep 17 00:00:00 2001 From: Jochen Dolze Date: Tue, 25 May 2010 15:10:21 +0200 Subject: Fixed some compiler warnings --- command/marks.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'command/marks.cpp') diff --git a/command/marks.cpp b/command/marks.cpp index 6935175..67358fc 100644 --- a/command/marks.cpp +++ b/command/marks.cpp @@ -392,7 +392,7 @@ bool clMarks::Save(const char *Directory, double FrameRate, bool isTS) struct stat statbuf; if (!stat(spath,&statbuf)) { - chown(fpath,statbuf.st_uid, statbuf.st_gid); + if (chown(fpath,statbuf.st_uid, statbuf.st_gid)) {}; } free(spath); } -- cgit v1.2.3