locks and fcntllocks, a little improvement
authorGustavo Martin Morcuende <gu.martinm@gmail.com>
Sun, 5 Jun 2016 21:20:28 +0000 (23:20 +0200)
committerGustavo Martin Morcuende <gu.martinm@gmail.com>
Sun, 5 Jun 2016 21:20:28 +0000 (23:20 +0200)
locks/fcntllocks.c
locks/flocks.c

index 3308264..220b035 100644 (file)
@@ -152,7 +152,7 @@ void *thread_lock(void * arg)
     fd = open(fileName, O_CREAT | O_RDWR, 0664);
     if (fd == -1) {
         goto end;
-        print_with_date (stderr, "Thread %d, open file error", threadNumber, strerror(errno));
+        print_with_date (stderr, "Thread %d, open file error\n", threadNumber, strerror(errno));
     }
 
 
@@ -206,7 +206,7 @@ int test_require_user() {
       
     fd = open(fileName, O_CREAT | O_RDWR, 0664);
     if (fd == -1) {
-        print_with_date(stderr, "Open file error", strerror(errno));
+        print_with_date(stderr, "Open file error\n", strerror(errno));
         goto end;
     }
 
index df55583..ab7a9f0 100644 (file)
@@ -151,7 +151,7 @@ void *thread_lock(void * arg)
     fd = open(fileName, O_CREAT | O_RDWR, 0664);
     if (fd == -1) {
         goto end;
-        print_with_date (stderr, "Thread %d, open file error", threadNumber, strerror(errno));
+        print_with_date (stderr, "Thread %d, open file error\n", threadNumber, strerror(errno));
     }
 
 
@@ -198,7 +198,7 @@ int test_require_user() {
       
     fd = open(fileName, O_CREAT | O_RDWR, 0664);
     if (fd == -1) {
-        print_with_date(stderr, "Open file error", strerror(errno));
+        print_with_date(stderr, "Open file error\n", strerror(errno));
         goto end;
     }