We had identical format_val and to_string; standardize on to_string

This commit is contained in:
ridiculousfish
2012-03-05 10:18:42 -08:00
parent 82a93d8406
commit 230fb921ec
3 changed files with 32 additions and 41 deletions

View File

@@ -541,8 +541,8 @@ void proc_fire_event( const wchar_t *msg, int type, pid_t pid, int status )
event.param1.pid = pid;
event.arguments->push_back(msg);
event.arguments->push_back(format_val<int>(pid));
event.arguments->push_back(format_val<int>(status));
event.arguments->push_back(to_string<int>(pid));
event.arguments->push_back(to_string<int>(status));
event_fire( &event );
event.arguments->resize(0);
}