From 53c206f2c5e9b3c5d8edad57c78f934413daf758 Mon Sep 17 00:00:00 2001 From: Cary R Date: Tue, 16 Mar 2010 17:43:19 -0700 Subject: [PATCH] Fix space issues. (cherry picked from commit 2a463f00b33ac92274e38da643e44870973897e3) --- tgt-vvp/vvp_scope.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tgt-vvp/vvp_scope.c b/tgt-vvp/vvp_scope.c index d34eb6eee..af5cec308 100644 --- a/tgt-vvp/vvp_scope.c +++ b/tgt-vvp/vvp_scope.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2001-2009 Stephen Williams (steve@icarus.com) + * Copyright (c) 2001-2010 Stephen Williams (steve@icarus.com) * * This source code is free software; you can redistribute it * and/or modify it in source code form under the terms of the GNU @@ -905,7 +905,7 @@ static void draw_logic_in_scope(ivl_net_logic_t lptr) assert(ivl_expr_type(fall_exp) == IVL_EX_SIGNAL); assert(ivl_expr_type(decay_exp) == IVL_EX_SIGNAL); - fprintf(vvp_out, "L_%p .delay L_%p/d", lptr, lptr); + fprintf(vvp_out, "L_%p .delay L_%p/d", lptr, lptr); sig = ivl_expr_signal(rise_exp); assert(ivl_signal_dimensions(sig) == 0); @@ -1115,7 +1115,7 @@ static const char* draw_lpm_output_delay(ivl_lpm_t net) dly = "/d"; fprintf(vvp_out, "L_%p .delay (%" PRIu64 ",%" PRIu64 ",%" PRIu64 ")" - "L_%p/d;\n", net, get_number_immediate64(d_rise), + " L_%p/d;\n", net, get_number_immediate64(d_rise), get_number_immediate64(d_fall), get_number_immediate64(d_decay), net); }