diff --git a/py/objstr.c b/py/objstr.c
index 69eb2fcefc6cf83390692e0a712773f4e3214907..e51c371f7be5ad45087b438a914d4fdf76e380ac 100644
--- a/py/objstr.c
+++ b/py/objstr.c
@@ -820,7 +820,7 @@ STATIC mp_obj_t str_rstrip(size_t n_args, const mp_obj_t *args) {
 #if MICROPY_PY_BUILTINS_STR_CENTER
 STATIC mp_obj_t str_center(mp_obj_t str_in, mp_obj_t width_in) {
     GET_STR_DATA_LEN(str_in, str, str_len);
-    int width = mp_obj_get_int(width_in);
+    mp_uint_t width = mp_obj_get_int(width_in);
     if (str_len >= width) {
         return str_in;
     }