second part of: change offset arguments to various <T>Buffer::read/merge methods...
[ardour.git] / libs / pbd / epa.cc
index cfc56921381125dbcc01cdedab53f29e36152c37..4af2029308559273775c628cd058a4180fffc7d7 100644 (file)
@@ -144,12 +144,12 @@ EnvironmentalProtectionAgency::clear () const
 
        for (vector<string>::const_iterator e = ecopy.begin(); e != ecopy.end(); ++e) {
                 string::size_type equal = (*e).find_first_of ('=');
-                       
+
                 if (equal == string::npos) {
                         /* say what? an environ value without = ? */
                         continue;
                 }
-                       
+
                 string var_name = (*e).substr (0, equal);
                 g_unsetenv(var_name.c_str());
         }