clang-format

This commit is contained in:
Ben Vanik
2015-05-04 19:03:30 -07:00
parent 0f14575592
commit 442e5f2840
7 changed files with 36 additions and 29 deletions

View File

@@ -153,10 +153,9 @@ void* XUserModule::GetProcAddressByName(const char* name) {
int ret = xe_xex2_lookup_export(xex_, name, export);
// Failure.
if (ret)
return NULL;
if (ret) return NULL;
return (void *)export.addr;
return (void*)export.addr;
}
X_STATUS XUserModule::GetSection(const char* name, uint32_t* out_section_data,