Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
mpim-sw
cdo
Commits
b85af35a
Commit
b85af35a
authored
Aug 21, 2015
by
Uwe Schulzweida
Browse files
table.c: changed char *tablefile[len] to char tablefile[len] (bug fix)
parent
5f5eaa75
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/table.c
View file @
b85af35a
...
...
@@ -38,7 +38,7 @@ int defineTable(char *tablearg)
if
(
tablepath
)
{
int
len
=
sizeof
(
tablepath
)
+
sizeof
(
tablename
)
+
3
;
char
*
tablefile
[
len
];
char
tablefile
[
len
];
strcpy
(
tablefile
,
tablepath
);
strcat
(
tablefile
,
"/"
);
strcat
(
tablefile
,
tablename
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment