Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
V
Vim
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
Model registry
Operate
Environments
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
Show more breadcrumbs
Someone-Else
Vim
Commits
624c7aa6
Commit
624c7aa6
authored
14 years ago
by
Bram Moolenaar
Browse files
Options
Downloads
Patches
Plain Diff
Avoid compiler warnings for size_t to int conversions.
parent
349b2fb0
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/misc1.c
+4
-4
4 additions, 4 deletions
src/misc1.c
with
4 additions
and
4 deletions
src/misc1.c
+
4
−
4
View file @
624c7aa6
...
...
@@ -9273,8 +9273,8 @@ is_unique(maybe_unique, gap, i)
if (j == i)
continue;
candidate_len
=
STRLEN
(
maybe_unique
);
other_path_len
=
STRLEN
(
other_paths
[
j
]);
candidate_len =
(int)
STRLEN(maybe_unique);
other_path_len =
(int)
STRLEN(other_paths[j]);
if (other_path_len < candidate_len)
continue; /* it's different */
...
...
@@ -9327,7 +9327,7 @@ uniquefy_paths(gap, pattern)
* regex matches anywhere in the path. FIXME: is this valid for all
* possible pattern?
*/
len
=
STRLEN
(
pattern
);
len =
(int)
STRLEN(pattern);
file_pattern = alloc(len + 2);
file_pattern[0] = '*';
file_pattern[1] = '\0';
...
...
@@ -9347,7 +9347,7 @@ uniquefy_paths(gap, pattern)
for (i = 0; i < gap->ga_len; i++)
{
path = fnames[i];
len
=
STRLEN
(
path
);
len =
(int)
STRLEN(path);
/* we start at the end of the path */
pathsep_p = path + len - 1;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment