File tree 2 files changed +3
-2
lines changed
2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -68,7 +68,7 @@ exec sql end declare section;
68
68
printf(", born %ld", personal.birth.born);
69
69
if (ind_personal.ind_birth.age >= 0)
70
70
printf(", age = %d", personal.birth.age);
71
- if (ind_married >= 0)
71
+ if (* ind_married >= 0)
72
72
printf(", married %10.10s", married->arr);
73
73
if (ind_children >= 0)
74
74
printf(", children = %d", children);
@@ -98,7 +98,7 @@ exec sql end declare section;
98
98
printf(", born %ld", personal.birth.born);
99
99
if (ind_personal.ind_birth.age >= 0)
100
100
printf(", age = %d", personal.birth.age);
101
- if (ind_married >= 0)
101
+ if (* ind_married >= 0)
102
102
printf(", married %10.10s", married->arr);
103
103
if (ind_children >= 0)
104
104
printf(", children = %d", children);
Original file line number Diff line number Diff line change 1
1
#include <locale.h>
2
2
#include <string.h>
3
+ #include <stdlib.h>
3
4
4
5
exec sql whenever sqlerror sqlprint;
5
6
You can’t perform that action at this time.
0 commit comments