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
5c962630
Commit
5c962630
authored
12 years ago
by
Bram Moolenaar
Browse files
Options
Downloads
Patches
Plain Diff
updated for version 7.3.832
Problem: Compiler warning. Solution: Add type cast. (Mike Williams)
parent
26402cb2
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/version.c
+4
-1
4 additions, 1 deletion
src/version.c
with
4 additions
and
1 deletion
src/version.c
+
4
−
1
View file @
5c962630
...
...
@@ -728,6 +728,8 @@ static char *(features[]) =
static
int
included_patches
[]
=
{
/* Add new patch number below this line */
/**/
832
,
/**/
831
,
/**/
...
...
@@ -2466,7 +2468,7 @@ list_features()
* width */
for
(
i
=
0
;
features
[
i
]
!=
NULL
;
++
i
)
{
int
l
=
STRLEN
(
features
[
i
]);
int
l
=
(
int
)
STRLEN
(
features
[
i
]);
if
(
l
>
width
)
width
=
l
;
...
...
@@ -2518,6 +2520,7 @@ list_features()
msg_putchar
(
'\n'
);
}
}
void
list_version
()
{
...
...
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