Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
Jason J. Gullickson committed Feb 6, 2015
1 parent 0b7f4f0 commit e851568
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions jsfs.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ var log = {
};

function save_superblock(){
for(location in config.STORAGE_LOCATIONS){
for(var location in config.STORAGE_LOCATIONS){
if(config.STORAGE_LOCATIONS.hasOwnProperty(location)){
var storage_path = config.STORAGE_LOCATIONS[location].path;

Expand All @@ -49,7 +49,7 @@ function save_superblock(){
}

function load_superblock(){
for(location in config.STORAGE_LOCATIONS){
for(var location in config.STORAGE_LOCATIONS){
if(config.STORAGE_LOCATIONS.hasOwnProperty(location)){
var storage_path = config.STORAGE_LOCATIONS[location].path;
try{
Expand Down

0 comments on commit e851568

Please sign in to comment.