aboutsummaryrefslogtreecommitdiffhomepage
path: root/env_universal.cpp
diff options
context:
space:
mode:
authorGravatar ridiculousfish <corydoras@ridiculousfish.com>2012-02-21 10:47:21 -0800
committerGravatar ridiculousfish <corydoras@ridiculousfish.com>2012-02-21 10:47:21 -0800
commit2206e221bd58b19141872c062012b6a9db0d73a2 (patch)
tree93e489e678065902ac2b527cb9bdbe42f9d2f67f /env_universal.cpp
parentd9bb9b73adc32b91df31ceec299e3194b49710e2 (diff)
Removed array_list_t (!)
Diffstat (limited to 'env_universal.cpp')
-rw-r--r--env_universal.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/env_universal.cpp b/env_universal.cpp
index 7ab5956c..94e592a1 100644
--- a/env_universal.cpp
+++ b/env_universal.cpp
@@ -211,7 +211,7 @@ static void env_universal_remove_all()
size_t i;
wcstring_list_t lst;
- env_universal_common_get_names2( lst,
+ env_universal_common_get_names( lst,
1,
1 );
for( i=0; i<lst.size(); i++ )
@@ -470,7 +470,7 @@ void env_universal_get_names2( wcstring_list_t &lst,
if( !init )
return;
- env_universal_common_get_names2( lst,
+ env_universal_common_get_names( lst,
show_exported,
show_unexported );
}