Removed german comments.

This commit is contained in:
Fabian Druschke
2025-11-28 16:09:07 +01:00
parent 9a70d23e4a
commit 5f47df370e

View File

@@ -656,12 +656,12 @@ static void nwipe_normalize_serial( char* serial )
{ {
*dst++ = (char) ch; *dst++ = (char) ch;
} }
/* Alle anderen Zeichen (Steuerzeichen, >0x7F) werden verworfen */ /* Alle remaining control characters will be dropped ( >0x7F) */
} }
*dst = '\0'; *dst = '\0';
/* Vorhandene trim()-Logik wiederverwenden */ /* Use existing trim() function */
trim( serial ); trim( serial );
} }