CLEANUP: tools: extra check in utoa_pad

Removing useless check in utoa_pad().

This was reported by Ilya with the help of cppcheck.
diff --git a/src/tools.c b/src/tools.c
index b5b6442..cfa1cc6 100644
--- a/src/tools.c
+++ b/src/tools.c
@@ -421,8 +421,7 @@
 	}
 	if (i + 2 > size) // (i + 1) + '\0'
 		return NULL;  // too long
-	if (i < size)
-		i = size - 2; // padding - '\0'
+	i = size - 2; // padding - '\0'
 
 	ret = dst + i + 1;
 	*ret = '\0';