summaryrefslogtreecommitdiff
path: root/test/test5-03.txt
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-06-19 16:18:44 +0300
committerAndrei Karas <akaras@inbox.ru>2015-06-19 16:22:04 +0300
commit07d855f00bef2bc0443f5549073747dee8df858f (patch)
tree3267f5eec91d6a742834eaaac10e2e2546b607e0 /test/test5-03.txt
parentcfeea49b5c533fe7fe4dace22f68f63cbe8403e3 (diff)
downloadparanucker-07d855f00bef2bc0443f5549073747dee8df858f.tar.gz
paranucker-07d855f00bef2bc0443f5549073747dee8df858f.tar.bz2
paranucker-07d855f00bef2bc0443f5549073747dee8df858f.tar.xz
paranucker-07d855f00bef2bc0443f5549073747dee8df858f.zip
Add to all test names leading 0.
This mean test1 -> test01, etc
Diffstat (limited to 'test/test5-03.txt')
-rw-r--r--test/test5-03.txt31
1 files changed, 0 insertions, 31 deletions
diff --git a/test/test5-03.txt b/test/test5-03.txt
deleted file mode 100644
index 9664057..0000000
--- a/test/test5-03.txt
+++ /dev/null
@@ -1,31 +0,0 @@
-test5.c: In function 'void func1(int, int*, char)':
-test5.c:12:13: warning: Using parameter 'b' without checking for null pointer
- *b = 100;
- ^
-test5.c: In function 'void func2(int, int*, char)':
-test5.c:17:9: warning: Using parameter 'b' without checking for null pointer
- *(1 + b) = 200;
- ^
-test5.c: In function 'void func3(int, int*, char)':
-test5.c:22:9: warning: Using parameter 'b' without checking for null pointer
- *(1 + (1 + b)) = 300;
- ^
-test5.c: In function 'void func5(int, int*, char)':
-test5.c:28:12: warning: Using parameter 'b' without checking for null pointer
- *(var1 + b) = 400;
- ^
-test5.c: In function 'void func6(int, int*, char)':
-test5.c:33:10: warning: Using parameter 'b' without checking for null pointer
- int *var2 = b;
- ^
-test5.c:33:10: warning: Using parameter 'b' without checking for null pointer
-test5.c:33:10: warning: Using parameter 'b' without checking for null pointer
-test5.c:33:10: warning: Using parameter 'b' without checking for null pointer
-test5.c: In function 'void func7(int, int*, char)':
-test5.c:39:20: warning: Using parameter 'b' without checking for null pointer
- int *var3 = 12 + b;
- ^
-test5.c: In function 'void func8(int, int*, char)':
-test5.c:45:11: warning: Using parameter 'bptr' without checking for null pointer
- int **var4 = &bptr;
- ^