Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
libdap
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
cellframe
libdap
Compare revisions
ceb3ae7f57c6647876f71cd41f238dfe38254116 to 97f2cafbc688e9b656427ab376d9841a7ff8b8ea
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
cellframe/libdap
Select target project
No results found
97f2cafbc688e9b656427ab376d9841a7ff8b8ea
Select Git revision
Swap
Target
cellframe/libdap
Select target project
cellframe/libdap
1 result
ceb3ae7f57c6647876f71cd41f238dfe38254116
Select Git revision
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (1)
typename fixed
· 97f2cafb
Constantin Papizh
authored
5 years ago
97f2cafb
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/dap_file_utils.c
+1
-1
1 addition, 1 deletion
src/dap_file_utils.c
with
1 addition
and
1 deletion
src/dap_file_utils.c
View file @
97f2cafb
...
...
@@ -382,7 +382,7 @@ dap_list_name_directories_t *dap_get_subs(const char *a_path_dir){
HANDLE
h_find_file
=
FindFirstFileA
(
m_path
,
&
info_file
);
while
(
FindNextFileA
(
h_find_file
,
&
info_file
)){
if
(
info_file
.
dwFileAttributes
==
FILE_ATTRIBUTE_DIRECTORY
){
element
=
(
list_name_directories_t
*
)
malloc
(
sizeof
(
list_name_directories_t
));
element
=
(
dap_
list_name_directories_t
*
)
malloc
(
sizeof
(
dap_
list_name_directories_t
));
element
->
name_directory
=
dap_strdup
(
info_file
.
cFileName
);
LL_APPEND
(
list
,
element
);
}
...
...
This diff is collapsed.
Click to expand it.