Commit 9cf1dbb680afe37931a00de7f0d28c0fcc552c41

Authored by Perry Werneck
1 parent 05b29e2b
Exists in master and in 1 other branch develop

Fixing windows build.

Showing 1 changed file with 1 additions and 1 deletions   Show diff stats
src/testprogram/testprogram.cc
... ... @@ -199,7 +199,7 @@
199 199 } else if(strncasecmp(cmdline.c_str(),"find ",5) == 0) {
200 200  
201 201 cout << "Searching for \"" << (cmdline.c_str()+5) << "\"" << endl;
202   - rc = hllapi_find_text(cmdline.c_str()+5);
  202 + rc = hllapi_find_text((LPSTR) (cmdline.c_str()+5));
203 203  
204 204 } else {
205 205  
... ...