From d115bca3807a342aca1e402a929541115343afc2 Mon Sep 17 00:00:00 2001 From: nihui Date: Fri, 3 Nov 2023 11:31:41 +0000 Subject: [PATCH] apply code-format changes --- src/gpu.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/gpu.cpp b/src/gpu.cpp index cdd91e4f7045..2a1bf4c5883f 100644 --- a/src/gpu.cpp +++ b/src/gpu.cpp @@ -93,16 +93,16 @@ struct hw_module_t uint32_t tag; uint16_t module_api_version; uint16_t hal_api_version; - const char *id; - const char *name; - const char *author; + const char* id; + const char* name; + const char* author; hw_module_methods_t* methods; void* dso; #ifdef __LP64__ - uint64_t reserved[32-7]; + uint64_t reserved[32 - 7]; #else /** padding to 128 bytes, reserved for future use */ - uint32_t reserved[32-7]; + uint32_t reserved[32 - 7]; #endif };