summaryrefslogtreecommitdiff
Side-by-side diff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--library/filemanager.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/library/filemanager.cpp b/library/filemanager.cpp
index 99837fe..adfe590 100644
--- a/library/filemanager.cpp
+++ b/library/filemanager.cpp
@@ -276,4 +276,4 @@ bool FileManager::copyFile( const QString & src, const QString & dest ) {
err = sendfile(write_fd, read_fd, &offset, stat_buf.st_size);
- if( err != -1) {
- switch(err) {
+ if( err == -1) {
+ switch(errno) {
case EBADF : msg = "The input file was not opened for reading or the output file was not opened for writing. ";