autoupdater: fix indentation

This commit is contained in:
Matthias Schiffer 2017-02-25 18:09:39 +01:00
parent 6a2d288006
commit cae8f9c4ce
No known key found for this signature in database
GPG Key ID: 16EF3F64CB201D9C
1 changed files with 2 additions and 2 deletions

View File

@ -38,7 +38,7 @@ function newer_than(a, b)
local bc = char_order(b, bpos)
if ac ~= bc then
return ac > bc
return ac > bc
end
apos = apos + 1
@ -55,7 +55,7 @@ function newer_than(a, b)
while isdigit(a, apos) and isdigit(b, bpos) do
if first_diff == 0 then
first_diff = char_value(a, apos) - char_value(b, bpos)
first_diff = char_value(a, apos) - char_value(b, bpos)
end
apos = apos + 1