@@ -296,7 +296,7 @@ static int edit_patch(int argc, const char **argv, const char *prefix)
296296 git_config (git_diff_basic_config , NULL ); /* no "diff" UI options */
297297
298298 if (read_cache () < 0 )
299- die (_ ("Could not read the index" ));
299+ die (_ ("Could not read the index" ));
300300
301301 init_revisions (& rev , prefix );
302302 rev .diffopt .context = 7 ;
@@ -307,11 +307,11 @@ static int edit_patch(int argc, const char **argv, const char *prefix)
307307 DIFF_OPT_SET (& rev .diffopt , IGNORE_DIRTY_SUBMODULES );
308308 out = open (file , O_CREAT | O_WRONLY , 0666 );
309309 if (out < 0 )
310- die (_ ("Could not open '%s' for writing." ), file );
310+ die (_ ("Could not open '%s' for writing." ), file );
311311 rev .diffopt .file = xfdopen (out , "w" );
312312 rev .diffopt .close_file = 1 ;
313313 if (run_diff_files (& rev , 0 ))
314- die (_ ("Could not write patch" ));
314+ die (_ ("Could not write patch" ));
315315
316316 launch_editor (file , NULL , NULL );
317317
@@ -324,7 +324,7 @@ static int edit_patch(int argc, const char **argv, const char *prefix)
324324 child .git_cmd = 1 ;
325325 child .argv = apply_argv ;
326326 if (run_command (& child ))
327- die (_ ("Could not apply '%s'" ), file );
327+ die (_ ("Could not apply '%s'" ), file );
328328
329329 unlink (file );
330330 free (file );
@@ -582,7 +582,7 @@ int cmd_add(int argc, const char **argv, const char *prefix)
582582
583583 unplug_bulk_checkin ();
584584
585- finish :
585+ finish :
586586 if (active_cache_changed ) {
587587 if (write_cache (newfd , active_cache , active_nr ) ||
588588 commit_locked_index (& lock_file ))
0 commit comments