| 
     
      
      
      From: <bva...@us...> - 2015-01-14 08:06:20
      
     
   | 
Revision: 5967
          http://sourceforge.net/p/scst/svn/5967
Author:   bvassche
Date:     2015-01-14 08:06:12 +0000 (Wed, 14 Jan 2015)
Log Message:
-----------
scst_targ: Use tabs instead of spaces for indentation (detected by checkpatch)
Modified Paths:
--------------
    trunk/scst/src/scst_targ.c
Modified: trunk/scst/src/scst_targ.c
===================================================================
--- trunk/scst/src/scst_targ.c	2015-01-13 09:38:09 UTC (rev 5966)
+++ trunk/scst/src/scst_targ.c	2015-01-14 08:06:12 UTC (rev 5967)
@@ -1602,17 +1602,17 @@
  */
 static inline bool scst_needs_thread_context(struct scst_cmd *cmd)
 {
-       switch (cmd->cdb[0]) {
-       case PERSISTENT_RESERVE_IN:
-       case PERSISTENT_RESERVE_OUT:
-       case RESERVE:
-       case RESERVE_10:
-       case RELEASE:
-       case RELEASE_10:
-               return true;
-       }
+	switch (cmd->cdb[0]) {
+	case PERSISTENT_RESERVE_IN:
+	case PERSISTENT_RESERVE_OUT:
+	case RESERVE:
+	case RESERVE_10:
+	case RELEASE:
+	case RELEASE_10:
+		return true;
+	}
 
-       return false;
+	return false;
 }
 
 static int scst_tgt_pre_exec(struct scst_cmd *cmd)
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
 |