iceman1001 / proxmark3

[Deprecated] Iceman Fork, the most totally wicked fork around if you are into proxmark3
http://www.icedev.se/pm3.aspx
GNU General Public License v2.0
463 stars 116 forks source link

fix printing percentage character to be standard compliant #272

Closed fabled closed 5 years ago

fabled commented 5 years ago

Using \% is glibc extension and does not work in all systems.

This changes PrintAndLogEx() to call the underlying function so that percent is not exapanded any more, and we can use the standard %% to express percent character.

iceman1001 commented 5 years ago

Excellent!