summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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;
}