about summary refs log tree commit diff
path: root/src/rt/rust_builtin.cpp
diff options
context:
space:
mode:
authorBrian Anderson <banderson@mozilla.com>2011-08-12 11:02:23 -0700
committerBrian Anderson <banderson@mozilla.com>2011-08-12 12:14:07 -0700
commit4fc0848a497ca24dd8626b6c409cb8ffce98001f (patch)
tree12671da6e578e869775736103b9cfe107b2e259f /src/rt/rust_builtin.cpp
parent8561f7654cdf86d2d48d4c0fcf6f9a1bb5f117f0 (diff)
downloadrust-4fc0848a497ca24dd8626b6c409cb8ffce98001f.tar.gz
rust-4fc0848a497ca24dd8626b6c409cb8ffce98001f.zip
Rename rust_list_files_ivec to rust_list_files
Diffstat (limited to 'src/rt/rust_builtin.cpp')
-rw-r--r--src/rt/rust_builtin.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rt/rust_builtin.cpp b/src/rt/rust_builtin.cpp
index 90e4cc2115f..4b8af7a67b6 100644
--- a/src/rt/rust_builtin.cpp
+++ b/src/rt/rust_builtin.cpp
@@ -443,7 +443,7 @@ rust_str* c_str_to_rust(rust_task *task, char const *str) {
 }
 
 extern "C" CDECL rust_box*
-rust_list_files_ivec(rust_task *task, rust_str *path) {
+rust_list_files(rust_task *task, rust_str *path) {
     array_list<rust_str*> strings;
 #if defined(__WIN32__)
     WIN32_FIND_DATA FindFileData;