Skip to content
GitLab
Projects
Groups
Topics
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
ALPACA
CASPER
katcp
Commits
a08e2a56
Commit
a08e2a56
authored
14 years ago
by
Adam Barta
Browse files
Options
Download
Email Patches
Plain Diff
parser
parent
be78ea55
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
kcs/parser.c
+1
-1
kcs/parser.c
with
1 addition
and
1 deletion
+1
-1
kcs/parser.c
+
1
-
1
View file @
a08e2a56
...
...
@@ -257,12 +257,12 @@ int start_parser(struct p_parser *p, char *f) {
temp
=
NULL
;
buffer
=
NULL
;
file
=
fopen
(
f
,
"r"
);
fd
=
fileno
(
file
);
if
(
file
==
NULL
){
fprintf
(
stderr
,
"Error Reading File: %s
\n
"
,
f
);
return
errno
;
}
fd
=
fileno
(
file
);
if
(
stat
(
f
,
&
file_stats
)
!=
0
)
return
errno
;
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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