C API: Fix coding style

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@179785 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Tom Stellard
2013-04-18 19:50:53 +00:00
parent 77e95d04c4
commit 4bfeee1302
2 changed files with 2 additions and 2 deletions

View File

@@ -2456,7 +2456,7 @@ LLVMMemoryBufferRef LLVMCreateMemoryBufferWithMemoryRangeCopy(
StringRef(BufferName)));
}
const char* LLVMGetBufferStart(LLVMMemoryBufferRef MemBuf) {
const char *LLVMGetBufferStart(LLVMMemoryBufferRef MemBuf) {
return unwrap(MemBuf)->getBufferStart();
}