diff options
author | Daniil Baturin <daniil@baturin.org> | 2019-01-20 23:23:03 +0700 |
---|---|---|
committer | Daniil Baturin <daniil@baturin.org> | 2019-01-20 23:23:03 +0700 |
commit | 9cb20cfff6c9d9fc577aaaaadd4a8bba0aa3028e (patch) | |
tree | 3791bcbe8561f1dafeaabadbb4a67d2396253d83 | |
parent | ef692a5a846e287e3a509828cfcc339eec48ff1f (diff) | |
download | hvinfo-9cb20cfff6c9d9fc577aaaaadd4a8bba0aa3028e.tar.gz hvinfo-9cb20cfff6c9d9fc577aaaaadd4a8bba0aa3028e.zip |
Fix a missing semicolon.
-rw-r--r-- | src/hvinfo.adb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/hvinfo.adb b/src/hvinfo.adb index 342a53e..ec4ddcf 100644 --- a/src/hvinfo.adb +++ b/src/hvinfo.adb @@ -98,7 +98,7 @@ begin -- but still exposes its own graphics card so that setup can be detected if VirtualBox_PCI_Present then Hypervisor_Name := "VirtualBox (using " & Hypervisor_Name & ")"; - end if + end if; end; elsif DMI_Available then -- VirtualBox, Parallels, and possible others only |