diff options
Diffstat (limited to 'src/grt')
-rw-r--r-- | src/grt/grt-vpi.adb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/grt/grt-vpi.adb b/src/grt/grt-vpi.adb index a0c413c3b..a3db80a6e 100644 --- a/src/grt/grt-vpi.adb +++ b/src/grt/grt-vpi.adb @@ -479,12 +479,12 @@ package body Grt.Vpi is when vpiType => Res := Ref.mType; when vpiTimePrecision => - Res := -9; -- is this nano-seconds? + Res := -12; -- In ps. when vpiSize => Res := Vpi_Get_Size (Ref); when vpiVector => Res := Boolean'Pos (Vpi_Get_Vector (Ref)); - when others=> + when others => dbgPut_Line ("vpi_get: unknown property"); Res := 0; end case; |