diff --git a/vpi/sys_display.c b/vpi/sys_display.c index 03b9a226e..8e380572c 100644 --- a/vpi/sys_display.c +++ b/vpi/sys_display.c @@ -869,7 +869,7 @@ static unsigned int get_numeric(char **rtn, const struct strobe_cb_info *info, switch(info->default_format){ case vpiDecStrVal: size = vpi_get_dec_size(item); - /* -1 can be represented as a one bit signed value. This returns + /* -1 can be represented as a one bit signed value. This returns * a size of 1 which is too small for the -1 string value so make * the string width the minimum display width. */ min = strlen(val.value.str); diff --git a/vpi/sys_scanf.c b/vpi/sys_scanf.c index 0666536f6..0bca2c5f8 100644 --- a/vpi/sys_scanf.c +++ b/vpi/sys_scanf.c @@ -323,7 +323,7 @@ static int scan_format_float_time(vpiHandle callh, vpiHandle argv, /* * Base routine for getting binary, octal and hex values. - * + * * Return: 1 for a match, 0 for no match/variable and -1 for a * suppressed match. No variable is fatal. */ @@ -413,7 +413,7 @@ static int scan_format_binary(vpiHandle callh, vpiHandle argv, /* * Routine to return a character value (implements %c). - * + * * Return: 1 for a match, 0 for no match/variable and -1 for a * suppressed match. No variable is fatal. */ @@ -459,7 +459,7 @@ static int scan_format_char(vpiHandle callh, vpiHandle argv, /* * Routine to return a decimal value (implements %d). - * + * * Return: 1 for a match, 0 for no match/variable and -1 for a * suppressed match. No variable is fatal. */ @@ -643,7 +643,7 @@ static int scan_format_module_path(vpiHandle callh, vpiHandle argv, /* * Routine to return a string value (implements %s). - * + * * Return: 1 for a match, 0 for no match/variable and -1 for a * suppressed match. No variable is fatal. */ diff --git a/vvp/delay.cc b/vvp/delay.cc index 94bb4d2e8..43d647546 100644 --- a/vvp/delay.cc +++ b/vvp/delay.cc @@ -775,7 +775,7 @@ static vpiHandle modpath_src_get_handle(int code, vpiHandle ref) // the vpi_iterate and vpi_scan functions. Continue to allow // them to be obtained here for backwards compatibility with // older versions of Icarus Verilog. - + case vpiModPathIn: return vpi_handle(&rfp->path_term_in);