Sapd / HeadsetControl

Sidetone and Battery status for Logitech G930, G533, G633, G933 SteelSeries Arctis 7/PRO 2019 and Corsair VOID (Pro) in Linux and MacOSX
GNU General Public License v3.0
1.47k stars 178 forks source link

Rename asprintf to _asprintf to avoid unused-result warnings #337

Closed Leixb closed 7 months ago

Leixb commented 8 months ago

Changes made

fixes #335

It would probably be best to actually check the return values for errors on writing. Maybe somethign along these lines:

#define ASSERT_ASPRINTF(x) { if (x < 0) {fprintf(stderr, "Error formatting output"); }

Checklist