OpenPrinting / libcups

OpenPrinting CUPS Library Sources
https://openprinting.github.io/cups/cups3.html
Apache License 2.0
35 stars 17 forks source link

Refactor "strlen(opt) - 1" as "strlen(opt + 1)" #60

Closed AreaZR closed 4 weeks ago

AreaZR commented 1 year ago

This is beneficial towards optimization because opt + 1 appears elsewhere in the code, allowing for more optimization passes in compilers.