diff options
| author | Blue Swirl | 2009-09-21 20:11:34 +0200 |
|---|---|---|
| committer | Blue Swirl | 2009-09-21 20:11:34 +0200 |
| commit | b9d38e9510b38a8c101fa50cbd6f75d9eff61261 (patch) | |
| tree | c267953d3408328a7d262b95a9fb95641e285525 /linux-user | |
| parent | Fix user targets broken by 96e132e24ee5a693069e83b6a981693588b088c1 (diff) | |
| download | qemu-b9d38e9510b38a8c101fa50cbd6f75d9eff61261.tar.gz qemu-b9d38e9510b38a8c101fa50cbd6f75d9eff61261.tar.xz qemu-b9d38e9510b38a8c101fa50cbd6f75d9eff61261.zip | |
Fix Sparse warnings about using plain integer as NULL pointer
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'linux-user')
| -rw-r--r-- | linux-user/arm/nwfpe/fpa11.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linux-user/arm/nwfpe/fpa11.c b/linux-user/arm/nwfpe/fpa11.c index 67e65e5237..3ff80ebc88 100644 --- a/linux-user/arm/nwfpe/fpa11.c +++ b/linux-user/arm/nwfpe/fpa11.c @@ -30,7 +30,7 @@ #include <stdio.h> -FPA11* qemufpa=0; +FPA11* qemufpa = NULL; CPUARMState* user_registers; /* Reset the FPA11 chip. Called to initialize and reset the emulator. */ |
