From 0c41998dc614990a57779cf055d7aa1c4e0339e2 Mon Sep 17 00:00:00 2001 From: Ian Moffett Date: Sat, 2 Nov 2024 20:20:23 -0400 Subject: [tests] Conform to OSMORA style Signed-off-by: Ian Moffett --- test.q | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/test.q b/test.q index dbdd857..4020e5b 100644 --- a/test.q +++ b/test.q @@ -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; } -- cgit v1.2.3