Merge "rcar_gen3: plat: Zero-terminate the string in unsigned_num_print()" into integration

This commit is contained in:
Sandrine Bailleux 2020-05-05 13:12:33 +00:00 committed by TrustedFirmware Code Review
commit fcfc96d63b
1 changed files with 1 additions and 0 deletions

View File

@ -134,6 +134,7 @@ static void unsigned_num_print(unsigned long long int unum, unsigned int radix,
while (--i >= 0)
*string++ = num_buf[i];
*string = 0;
}
#if (RCAR_LOSSY_ENABLE == 1)