Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Mirrors
Cadius
Commits
68e2e7da
Commit
68e2e7da
authored
Dec 17, 2020
by
David Stancu
Browse files
fix warnings
parent
f38d3d5c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Src/Prodos_Add.c
View file @
68e2e7da
...
...
@@ -364,12 +364,12 @@ static struct prodos_file *LoadFile(char *file_path_data, bool zero_case_bits)
return
NULL
;
}
bool
is_apple_single
=
ASIsAppleSingle
(
data
,
&
current_file
->
data_length
);
bool
is_apple_single
=
ASIsAppleSingle
(
data
,
(
size_t
)
current_file
->
data_length
);
if
(
is_apple_single
)
{
logf_info
(
" AppleSingle format detected!
\n
"
);
ASDecorateProdosFile
(
current_file
,
data
,
&
current_file
->
data_length
);
ASDecorateProdosFile
(
current_file
,
data
,
(
size_t
)
current_file
->
data_length
);
}
else
{
...
...
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