Skip to content

Commit 6091396

Browse files
committed
Ready for PR, Fix #438, Fix indent issue on test file 06 n°4 and add deactivation mention to pull_request_template.md
1 parent 9c7ef92 commit 6091396

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.github/pull_request_template.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@ Before merging your code, please check the following:
66

77
* [ ] you have added a line describing your changes to the Changelog;
88
* [ ] you have added unit tests for any new or improved feature;
9-
* [ ] In case you updated dependencies, you have checked pdi/docs/CheckList.md
9+
* [ ] in case you updated dependencies, you have checked pdi/docs/CheckList.md;
10+
* [ ] in case you added a new member to pdi.h, add the equivalent empty member to pdi_deactivation.h
1011
* you have checked your code format:
1112
- [ ] you have checked that you respect all conventions specified in CONTRIBUTING.md;
1213
- [ ] you have checked that the indentation and formatting conforms to the `.clang-format`;

tests/test_06.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,9 @@ int main(int argc, char* argv[])
3838
long longval;
3939

4040
int global_size[2];
41-
PC_int(PC_get(conf, ".global_size.height"), &longval);
41+
PC_int(PC_get(conf, ".global_size.height"), &longval);
4242
global_size[0] = longval;
43-
PC_int(PC_get(conf, ".global_size.width"), &longval);
43+
PC_int(PC_get(conf, ".global_size.width"), &longval);
4444
global_size[1] = longval;
4545

4646
// # As the value is shared with pdi.h, it can be reclaimed in a second time.

0 commit comments

Comments
 (0)