sim: sh: clean up time(NULL) call
authorMike Frysinger <vapier@gentoo.org>
Sun, 7 Nov 2021 01:06:47 +0000 (21:06 -0400)
committerMike Frysinger <vapier@gentoo.org>
Sun, 7 Nov 2021 01:06:47 +0000 (21:06 -0400)
commita11cd3ddb2af90da3e5af9917a3cf1c749479983
treea784e55d57367b2ec6685115a905b778df57ff2d
parent4a0bb487b8027a317b5c7011d870ae719098e8f0
sim: sh: clean up time(NULL) call

Casting 0 to a pointer via (long *) doesn't work on LLP64 targets:
error: cast from pointer to integer of different size [-Werror=pointer-to-int-cast]

It's also unnecessary here.  We can simply pass NULL like every other
bit of code does.
sim/sh/interp.c