Fix space issues.

This patch removes space before EOL, etc.
This commit is contained in:
Cary R 2011-11-02 18:10:41 -07:00 committed by Stephen Williams
parent 58d182bdf3
commit 27cb140cb4
3 changed files with 6 additions and 6 deletions

View File

@ -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);

View File

@ -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.
*/

View File

@ -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);