waving a dead chicken over the altar of git

This commit is contained in:
Allen Webster 2019-03-28 22:03:17 -07:00
commit e4d07a3778
2 changed files with 3 additions and 0 deletions

View File

@ -42,6 +42,8 @@ insertf(Buffer_Insertion *insertion, char *format, ...){
// TODO(casey): Allen, ideally we would have our own formatted here that could handle our string type, via %S or something, so // TODO(casey): Allen, ideally we would have our own formatted here that could handle our string type, via %S or something, so
// we don't have to keep doing %.*s and passing two parameters and all that garbage. // we don't have to keep doing %.*s and passing two parameters and all that garbage.
va_start(args, format); va_start(args, format);
// TODO(casey): Allen, ideally we would have our own formatted here that could handle our string type, via %S or something, so
// we don't have to keep doing %.*s and passing two parameters and all that garbage.
i32 result = vsprintf(temp, format, args); i32 result = vsprintf(temp, format, args);
va_end(args); va_end(args);

View File

@ -4684,6 +4684,7 @@ Get_Process_State(Application_Links *app, Buffer_ID buffer_id)
result.is_updating = file->is_updating; result.is_updating = file->is_updating;
result.return_code = file->return_code; result.return_code = file->return_code;
} }
return(result); return(result);
} }
*/ */