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
3b8652c4
...
3b8652c4cb3b68d33117db46e8936e73807984f3
authored
2001-12-28 11:18:17 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Removed unused variables.
1 parent
6df83035
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
3 deletions
libmu_scm/mu_port.c
libmu_scm/mu_port.c
View file @
3b8652c
...
...
@@ -30,7 +30,6 @@ struct mu_port
static
void
mu_port_alloc_buffer
(
SCM
port
,
size_t
read_size
,
size_t
write_size
)
{
struct
mu_port
*
mp
=
MU_PORT
(
port
);
scm_port
*
pt
=
SCM_PTAB_ENTRY
(
port
);
static
char
*
s_mu_port_alloc_buffer
=
"mu_port_alloc_buffer"
;
...
...
@@ -168,7 +167,6 @@ mu_port_fill_input (SCM port)
static
void
mu_port_write
(
SCM
port
,
const
void
*
data
,
size_t
size
)
{
struct
mu_port
*
mp
=
MU_PORT
(
port
);
scm_port
*
pt
=
SCM_PTAB_ENTRY
(
port
);
size_t
remaining
=
size
;
char
*
input
=
(
char
*
)
data
;
...
...
@@ -256,7 +254,7 @@ static int
mu_port_print
(
SCM
exp
,
SCM
port
,
scm_print_state
*
pstate
)
{
struct
mu_port
*
mp
=
MU_PORT
(
exp
);
size
_t
size
=
0
;
off
_t
size
=
0
;
scm_puts
(
"#<"
,
port
);
scm_print_port_mode
(
exp
,
port
);
...
...
Please
register
or
sign in
to post a comment