Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
John McEleney
/
mailutils
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Commit
08f4f14c
...
08f4f14c3109239d771392ddac23e60f8a47b61b
authored
2005-07-26 06:26:37 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
(builtin_putnum): Minor fix
1 parent
ff0db1cd
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
mh/mh_format.c
mh/mh_format.c
View file @
08f4f14
/* GNU Mailutils -- a suite of utilities for electronic mail
Copyright (C) 1999, 2000, 2001, 2002, 2003 Free Software Foundation, Inc.
Copyright (C) 1999, 2000, 2001, 2002, 2003
, 2005
Free Software Foundation, Inc.
GNU Mailutils is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
...
...
@@ -1068,7 +1068,7 @@ static void
builtin_putnum
(
struct
mh_machine
*
mach
)
{
char
*
p
;
asprintf
(
&
p
,
"%d"
,
mach
->
arg_num
);
asprintf
(
&
p
,
"%
l
d"
,
mach
->
arg_num
);
print_string
(
mach
,
0
,
p
);
free
(
p
);
}
...
...
Please
register
or
sign in
to post a comment