diff options
| -rw-r--r-- | src/synth/netlists-disp_verilog.adb | 4 | 
1 files changed, 1 insertions, 3 deletions
diff --git a/src/synth/netlists-disp_verilog.adb b/src/synth/netlists-disp_verilog.adb index 26c511480..28d473a89 100644 --- a/src/synth/netlists-disp_verilog.adb +++ b/src/synth/netlists-disp_verilog.adb @@ -236,9 +236,7 @@ package body Netlists.Disp_Verilog is              I : Input;           begin              I := Get_First_Sink (O); -            if I = No_Input then -               Put ("open"); -            else +            if I /= No_Input then                 Disp_Net_Name (O);              end if;           end;  | 
