diff options
| author | Luc Van Oostenryck <luc.vanoostenryck@gmail.com> | 2017-06-29 15:10:09 +0200 |
|---|---|---|
| committer | Luc Van Oostenryck <luc.vanoostenryck@gmail.com> | 2017-09-18 16:01:04 +0200 |
| commit | c5d7212e5f33e7674fc5f570158a80550dad5567 (patch) | |
| tree | 62b781caaa1268377e5a3640c0eee958b1b4c445 /validation | |
| parent | 90859bb4e3f9ad11f76ad42e3dce84043bdc3176 (diff) | |
| download | sparse-dev-c5d7212e5f33e7674fc5f570158a80550dad5567.tar.gz | |
fix test case kill-phi-ttsb
The function used in te test case has a return type of 'int'
but has nothing to return.
Fix this by using the correct return type: 'void'
Signed-off-by: Luc Van Oostenryck <luc.vanoostenryck@gmail.com>
Diffstat (limited to 'validation')
| -rw-r--r-- | validation/kill-phi-ttsbb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/validation/kill-phi-ttsbb.c b/validation/kill-phi-ttsbb.c index 178a65d1..7fea30bf 100644 --- a/validation/kill-phi-ttsbb.c +++ b/validation/kill-phi-ttsbb.c @@ -1,7 +1,7 @@ int def(void); void use(int); -static int foo(int a, int b) +static void foo(int a, int b) { int c; |
