waving a dead chicken over the altar of git
This commit is contained in:
commit
e4d07a3778
|
@ -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);
|
||||||
|
|
||||||
|
|
|
@ -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);
|
||||||
}
|
}
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in New Issue