mod/noc_s3: Use PRIu32 for format specifier
PRIu32 should be used instead %lu for the format specifier, but PRIu32 expects an unsigned int
and not an unsigned long
.
Change the UL
cast to U
in the #defines to fix this issue.
This is a follow up patch to !1057 (comment 140619)