mirror of
https://github.com/digarok/radius.git
synced 2024-10-31 17:04:38 +00:00
fix incorrect min bounds check/set
This commit is contained in:
parent
bb2769234a
commit
45e6df2b43
@ -192,7 +192,7 @@ source_contents.each_line do |line|
|
||||
elsif c == ';' && !in_operand
|
||||
in_comment = true
|
||||
# protect against "negative" spacing
|
||||
spaces = 1 > (comment_col_x-x) ? 1 : (comment_col_x-x)
|
||||
spaces = 0 > (comment_col_x-x) ? 0 : (comment_col_x-x)
|
||||
buf << " "*spaces
|
||||
|
||||
x+=comment_col_x-x
|
||||
|
Loading…
Reference in New Issue
Block a user