aboutsummaryrefslogtreecommitdiffhomepage
path: root/env.cpp
diff options
context:
space:
mode:
authorGravatar ridiculousfish <corydoras@ridiculousfish.com>2012-02-10 01:37:30 -0800
committerGravatar ridiculousfish <corydoras@ridiculousfish.com>2012-02-10 01:37:30 -0800
commitd975187433ed71120d603ab2815d11b9c80ae8be (patch)
tree790a1644dfb643b06bdd9b04d009bf5023141c33 /env.cpp
parent910863e9ea5e1a4db192b5be1630d125cff18485 (diff)
Removed some al_list functions
Diffstat (limited to 'env.cpp')
-rw-r--r--env.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/env.cpp b/env.cpp
index 5a794c93..d540ea0a 100644
--- a/env.cpp
+++ b/env.cpp
@@ -427,7 +427,7 @@ static void setup_path()
if( !path.missing() )
{
- tokenize_variable_array2( path, lst );
+ tokenize_variable_array( path, lst );
}
for( j=0; path_el[j]; j++ )
@@ -470,7 +470,7 @@ static void setup_path()
path = env_get_string( L"PATH" );
lst.resize(0);
- tokenize_variable_array2( path, lst );
+ tokenize_variable_array( path, lst );
}
}
}