Index: sandbox/win/sandbox_poc/pocdll/fs.cc |
diff --git a/sandbox/win/sandbox_poc/pocdll/fs.cc b/sandbox/win/sandbox_poc/pocdll/fs.cc |
index aafb9a5f20da90e4d31a9940a85d850b3e407eac..9a5b2bc3ca5fb4ea4776874432562a6c94214689 100644 |
--- a/sandbox/win/sandbox_poc/pocdll/fs.cc |
+++ b/sandbox/win/sandbox_poc/pocdll/fs.cc |
@@ -10,7 +10,7 @@ |
// Tries to open a file and outputs the result. |
// "path" can contain environment variables. |
// "output" is the stream for the logging. |
-void TryOpenFile(const wchar_t *path, FILE *output) { |
+void TryOpenFile(wchar_t *path, FILE *output) { |
wchar_t path_expanded[MAX_PATH] = {0}; |
DWORD size = ::ExpandEnvironmentStrings(path, path_expanded, MAX_PATH - 1); |
if (!size) { |