summaryrefslogtreecommitdiff
path: root/vdservice
diff options
context:
space:
mode:
authorMarc-André Lureau <marcandre.lureau@gmail.com>2012-05-24 15:03:17 +0200
committerMarc-André Lureau <marcandre.lureau@gmail.com>2012-05-24 19:03:48 +0200
commitcee350027f0583a5b687266479a9b89e5f74d669 (patch)
tree448096316460a7935de463cfc387fff58c9c3ac6 /vdservice
parentb4e9afc721882ae14fe9e720a3cd113701cf9f8e (diff)
mingw: fix broken build
Add missing declaration left-over.
Diffstat (limited to 'vdservice')
-rw-r--r--vdservice/vdservice.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/vdservice/vdservice.cpp b/vdservice/vdservice.cpp
index 3c35609..717215f 100644
--- a/vdservice/vdservice.cpp
+++ b/vdservice/vdservice.cpp
@@ -1223,7 +1223,7 @@ int _tmain(int argc, TCHAR* argv[]);
int main(void)
{
int argc;
- argv = CommandLineToArgvW(GetCommandLineW(), &argc);
+ TCHAR** argv = CommandLineToArgvW(GetCommandLineW(), &argc);
return _tmain(argc, argv);
}
#else