Skip to content

Commit

Permalink
Merge algorythmic/int-size (mas-cli#479)
Browse files Browse the repository at this point in the history
  • Loading branch information
urwrstkn8mare committed Apr 16, 2023
2 parents 4c044d8 + 3ec510c commit 763de74
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Sources/MasKit/Formatters/SearchResultFormatter.swift
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ struct SearchResultFormatter {
let price = result.price ?? 0.0

if includePrice {
output += String(format: "%12d %@ $%5.2f (%@)\n", appId, appName, price, version)
output += String(format: "%12ld %@ $%5.2f (%@)\n", appId, appName, price, version)
} else {
output += String(format: "%12d %@ (%@)\n", appId, appName, version)
output += String(format: "%12ld %@ (%@)\n", appId, appName, version)
}
}

Expand Down

0 comments on commit 763de74

Please sign in to comment.