Browse Source

[4065] untabify

Francis Dupont 9 years ago
parent
commit
c270a430d3
1 changed files with 4 additions and 4 deletions
  1. 4 4
      src/lib/util/threads/thread.cc

+ 4 - 4
src/lib/util/threads/thread.cc

@@ -42,14 +42,14 @@ class Blocker : boost::noncopyable {
 public:
     // Constructor blocks all signals
     Blocker() {
-	sigset_t new_mask;
-	sigfillset(&new_mask);
-	pthread_sigmask(SIG_BLOCK, &new_mask, &old_mask_);
+        sigset_t new_mask;
+        sigfillset(&new_mask);
+        pthread_sigmask(SIG_BLOCK, &new_mask, &old_mask_);
     }
 
     // Destructor restores the previous signal mask
     ~Blocker() {
-	pthread_sigmask(SIG_SETMASK, &old_mask_, 0);
+        pthread_sigmask(SIG_SETMASK, &old_mask_, 0);
     }
 
 private: