summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Moffett <ian@osmora.org>2024-11-02 20:20:23 -0400
committerIan Moffett <ian@osmora.org>2024-11-02 20:44:31 -0400
commit0c41998dc614990a57779cf055d7aa1c4e0339e2 (patch)
tree1363a095ba9fce275a1f0fb75905ed48c35632f4
parent2cb992bfd4fea07fcdb3df1b9ffe1e11d34c70f3 (diff)
[tests] Conform to OSMORA style
Signed-off-by: Ian Moffett <ian@osmora.org>
-rw-r--r--test.q16
1 files 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;
}