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
3b3807f8
Commit
3b3807f8
authored
Jun 24, 2010
by
Juanma Barranquero
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lib-src/movemail.c (error): Avoid warning when there are no args.
parent
8c079ebb
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
1 deletion
+5
-1
lib-src/ChangeLog
lib-src/ChangeLog
+4
-0
lib-src/movemail.c
lib-src/movemail.c
+1
-1
No files found.
lib-src/ChangeLog
View file @
3b3807f8
2010-06-24 Juanma Barranquero <lekktu@gmail.com>
* movemail.c (error): Avoid warning when there are no args.
2010-06-11 Juanma Barranquero <lekktu@gmail.com>
* makefile.w32-in (lisp2): Fix references to vc/vc-hooks.elc
...
...
lib-src/movemail.c
View file @
3b3807f8
...
...
@@ -612,7 +612,7 @@ error (s1, s2, s3)
else
if
(
s2
)
fprintf
(
stderr
,
s1
,
s2
);
else
fprintf
(
stderr
,
s1
);
fprintf
(
stderr
,
"%s"
,
s1
);
fprintf
(
stderr
,
"
\n
"
);
}
...
...
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