From 7c191c392bd6274b265036c9d8342fc4eac55fdd Mon Sep 17 00:00:00 2001 From: "ager@google.com" Date: Wed, 5 Oct 2011 15:02:27 +0000 Subject: [PATCH] Fix Windows build after directory library changes. R=sgjesse@google.com BUG= TEST= Review URL: https://chromereviews.googleplex.com/3527012 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@44 260f80e4-7a28-3924-810f-c04153c831b5 --- runtime/bin/directory_win.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/runtime/bin/directory_win.cc b/runtime/bin/directory_win.cc index cafce6887ea..ff5df13e2df 100644 --- a/runtime/bin/directory_win.cc +++ b/runtime/bin/directory_win.cc @@ -14,7 +14,8 @@ bool Directory::Close(intptr_t dir) { return false; } -void Directory::List(intptr_t dir, +void Directory::List(const char* path, + intptr_t dir, bool recursive, Dart_Port dir_handler, Dart_Port file_handler,