[trunk] Use C-style comments

This commit is contained in:
Mathieu Malaterre 2014-03-07 16:17:21 +00:00
parent a0aa8dd851
commit aedff8a000
1 changed files with 2 additions and 2 deletions

View File

@ -77,14 +77,14 @@ static int parse_cmdline_cmp(int argc, char **argv, test_cmp_parameters* param)
{
case 'b':
sizemembasefile = strlen(opj_optarg)+1;
free(param->base_filename); // handle dup option
free(param->base_filename); /* handle dup option */
param->base_filename = (char*) malloc(sizemembasefile);
strcpy(param->base_filename, opj_optarg);
/*printf("param->base_filename = %s [%d / %d]\n", param->base_filename, strlen(param->base_filename), sizemembasefile );*/
break;
case 't':
sizememtestfile = strlen(opj_optarg) + 1;
free(param->test_filename); // handle dup option
free(param->test_filename); /* handle dup option */
param->test_filename = (char*) malloc(sizememtestfile);
strcpy(param->test_filename, opj_optarg);
/*printf("param->test_filename = %s [%d / %d]\n", param->test_filename, strlen(param->test_filename), sizememtestfile);*/