get the previous change actually building

This commit is contained in:
Allen Webster 2017-06-28 11:17:41 -04:00
parent 7a94942242
commit 0104362cdb
1 changed files with 2 additions and 2 deletions

View File

@ -1048,12 +1048,12 @@ default_4coder_side_by_side_panels(Application_Links *app, char **command_line_f
if (file_count > 0){
char *left_name = command_line_files[0];
int32_t left_len = str_size(name);
int32_t left_len = str_size(left_name);
left = buffer_identifier(left_name, left_len);
if (file_count > 1){
char *right_name = command_line_files[1];
int32_t right_len = str_size(name);
int32_t right_len = str_size(right_name);
right = buffer_identifier(right_name, right_len);
}
}