Commit fcfc96d6 authored by Sandrine Bailleux's avatar Sandrine Bailleux Committed by TrustedFirmware Code Review
Browse files

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

parents 6eb4304c dcd08687
...@@ -134,6 +134,7 @@ static void unsigned_num_print(unsigned long long int unum, unsigned int radix, ...@@ -134,6 +134,7 @@ static void unsigned_num_print(unsigned long long int unum, unsigned int radix,
while (--i >= 0) while (--i >= 0)
*string++ = num_buf[i]; *string++ = num_buf[i];
*string = 0;
} }
#if (RCAR_LOSSY_ENABLE == 1) #if (RCAR_LOSSY_ENABLE == 1)
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment