diff src/dmlib.c @ 1102:e06abfde6c39

Cosmetics pass: Remove excess whitespace.
author Matti Hamalainen <ccr@tnsp.org>
date Tue, 03 Mar 2015 23:22:36 +0200
parents ada47e30d0c9
children f29fa5b6b748
line wrap: on
line diff
--- a/src/dmlib.c	Tue Mar 03 22:32:34 2015 +0200
+++ b/src/dmlib.c	Tue Mar 03 23:22:36 2015 +0200
@@ -150,7 +150,7 @@
 {
     if (error >= DM_SYSTEM_ERRORS)
         return strerror(error - DM_SYSTEM_ERRORS);
-    
+
     switch (error)
     {
         case DMERR_OK:             return "No error";
@@ -255,7 +255,7 @@
             "Lock #%d: thread=%d, state=%d\n",
             i, lock->id, lock->state);
         }
-    }    
+    }
 }
 
 int dmDOMutexLock(DMMutex *mutex, const char *file, const int line)
@@ -263,7 +263,7 @@
     if (mutex != NULL)
     {
         dmPrintMutexLocks(mutex, "LOCKING", file, line);
-        
+
         DMMutexLock *lock = dmGetMutexThreadIDLock(mutex);
         if (lock != NULL)
         {