diff options
author | Ian Moffett <ian@osmora.org> | 2024-11-02 20:20:23 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2024-11-02 20:44:31 -0400 |
commit | 0c41998dc614990a57779cf055d7aa1c4e0339e2 (patch) | |
tree | 1363a095ba9fce275a1f0fb75905ed48c35632f4 | |
parent | 2cb992bfd4fea07fcdb3df1b9ffe1e11d34c70f3 (diff) |
[tests] Conform to OSMORA style
Signed-off-by: Ian Moffett <ian@osmora.org>
-rw-r--r-- | test.q | 16 |
1 files changed, 8 insertions, 8 deletions
@@ -25,25 +25,25 @@ type EfiBootServices: struct { type EfiConfigurationTable: struct { EfiGuid vendorGuid; - any* vendorTable; + any *vendorTable; } type EfiSystemTable: struct { EfiTableHeader hdr; - any* firmwareVendor; + any *firmwareVendor; uint32 firmwareRevision; EfiHandle consoleInHandle; - any* conIn; + any *conIn; EfiHandle consoleOutHandle; - any* conOut; + any *conOut; EfiHandle standardErrorHandle; - any* stdErr; + any *stdErr; - EfiRuntimeServices* runtimeServices; - EfiBootServices* bootServices; + EfiRuntimeServices *runtimeServices; + EfiBootServices *bootServices; uint numberOfTableEntries; - EfiConfigurationTable* configurationTable; + EfiConfigurationTable *configurationTable; } |