diff --git a/4coder_insertion.cpp b/4coder_insertion.cpp index de4e84de..ad7aba0b 100644 --- a/4coder_insertion.cpp +++ b/4coder_insertion.cpp @@ -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 // we don't have to keep doing %.*s and passing two parameters and all that garbage. 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); va_end(args); diff --git a/4ed_api_implementation.cpp b/4ed_api_implementation.cpp index 160b9f47..cffb60f5 100644 --- a/4ed_api_implementation.cpp +++ b/4ed_api_implementation.cpp @@ -4684,6 +4684,7 @@ Get_Process_State(Application_Links *app, Buffer_ID buffer_id) result.is_updating = file->is_updating; result.return_code = file->return_code; } + return(result); } */