Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
ea4d2909
Commit
ea4d2909
authored
May 25, 1995
by
Karl Heuer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(format1): Cast arg of doprnt.
parent
cc04c679
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
src/editfns.c
src/editfns.c
+2
-2
No files found.
src/editfns.c
View file @
ea4d2909
...
...
@@ -1917,9 +1917,9 @@ format1 (string1)
args
[
2
]
=
arg2
;
args
[
3
]
=
arg3
;
args
[
4
]
=
arg4
;
doprnt
(
buf
,
sizeof
buf
,
string1
,
0
,
5
,
args
);
doprnt
(
buf
,
sizeof
buf
,
string1
,
(
char
*
)
0
,
5
,
args
);
#else
doprnt
(
buf
,
sizeof
buf
,
string1
,
0
,
5
,
&
string1
+
1
);
doprnt
(
buf
,
sizeof
buf
,
string1
,
(
char
*
)
0
,
5
,
&
string1
+
1
);
#endif
return
build_string
(
buf
);
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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