diff options
author | Howard Hinnant <hhinnant@apple.com> | 2011-10-17 20:08:59 +0000 |
---|---|---|
committer | Howard Hinnant <hhinnant@apple.com> | 2011-10-17 20:08:59 +0000 |
commit | a892966218c2c7907bdc3f158685b7aa08ac9984 (patch) | |
tree | d50dc1576d40b9580d7d091cad2fc3aedc08bd8e /libcxx/src/support/win32/support.cpp | |
parent | 444bd25dff35cf8610e9baf1268d6a75a0fa059f (diff) | |
download | bcm5719-llvm-a892966218c2c7907bdc3f158685b7aa08ac9984.tar.gz bcm5719-llvm-a892966218c2c7907bdc3f158685b7aa08ac9984.zip |
de-tabbify
llvm-svn: 142237
Diffstat (limited to 'libcxx/src/support/win32/support.cpp')
-rw-r--r-- | libcxx/src/support/win32/support.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libcxx/src/support/win32/support.cpp b/libcxx/src/support/win32/support.cpp index 8ed2921d241..b3ef50a7990 100644 --- a/libcxx/src/support/win32/support.cpp +++ b/libcxx/src/support/win32/support.cpp @@ -21,7 +21,7 @@ int asprintf(char **sptr, const char *__restrict__ fmt, ...) va_start(ap, fmt); int result = vasprintf(sptr, fmt, ap); va_end(ap); - return result; + return result; } int vasprintf( char **sptr, const char *__restrict__ fmt, va_list ap ) { |