mirror of
https://github.com/radareorg/radare2.git
synced 2025-02-04 20:46:20 +00:00
cons/canvas: remove useless condition because always true
This commit is contained in:
parent
da16e1424d
commit
ac3a153925
@ -305,8 +305,7 @@ R_API void r_cons_canvas_box(RConsCanvas *c, int x, int y, int w, int h, const c
|
||||
memset (row+1, '-', w-2);
|
||||
if (w>1)
|
||||
row[w-1] = roundcorners?'.':corner;
|
||||
if (w>=0)
|
||||
row[w] = 0;
|
||||
row[w] = 0;
|
||||
if (G(x, y)) {
|
||||
W(row);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user