Skip to content

Commit

Permalink
COMMON: Minor code style fix
Browse files Browse the repository at this point in the history
  • Loading branch information
DrMcCoy committed Jun 7, 2013
1 parent 4574838 commit c51551f
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/common/system.h
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,7 @@
#define NORETURN_PRE __declspec(noreturn)
#define PLUGIN_EXPORT __declspec(dllexport)

static FORCEINLINE int c99_vsnprintf(char* str, size_t size, const char* format, va_list ap)
{
static FORCEINLINE int c99_vsnprintf(char* str, size_t size, const char* format, va_list ap) {
int count = -1;

if (size != 0)
Expand All @@ -66,8 +65,7 @@
return count;
}

static FORCEINLINE int c99_snprintf(char* str, size_t size, const char* format, ...)
{
static FORCEINLINE int c99_snprintf(char* str, size_t size, const char* format, ...) {
int count;
va_list ap;

Expand Down

0 comments on commit c51551f

Please sign in to comment.