Commit 2127510d authored by Vitaly Lipatov's avatar Vitaly Lipatov

mtrconv, vtconv: fix const char using

parent 628a9f72
...@@ -26,7 +26,7 @@ int main( int argc, char **argv ) ...@@ -26,7 +26,7 @@ int main( int argc, char **argv )
unsigned short v1 = 0; unsigned short v1 = 0;
unsigned short v2 = 0; unsigned short v2 = 0;
char* type=""; const char* type="";
if( argc<2 ) if( argc<2 )
{ {
......
...@@ -45,7 +45,7 @@ int main( int argc, char **argv ) ...@@ -45,7 +45,7 @@ int main( int argc, char **argv )
unsigned short v[4]; unsigned short v[4];
memset(v,0,sizeof(v)); memset(v,0,sizeof(v));
char* type=""; const char* type="";
if( argc<3 ) if( argc<3 )
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment