Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 640644
Collapse All | Expand All

(-)a/libmu_scm/mu_body.c (-1 / +1 lines)
Lines 40-46 mu_scm_body_mark (SCM body_smob) Link Here
40
  return mbp->msg;
40
  return mbp->msg;
41
}
41
}
42
42
43
static scm_sizet
43
static size_t
44
mu_scm_body_free (SCM body_smob)
44
mu_scm_body_free (SCM body_smob)
45
{
45
{
46
  struct mu_body *mbp = (struct mu_body *) SCM_CDR (body_smob);
46
  struct mu_body *mbp = (struct mu_body *) SCM_CDR (body_smob);
(-)a/libmu_scm/mu_dbgport.c (-1 / +1 lines)
Lines 79-85 _mu_debug_port_close (SCM port) Link Here
79
  return 0;
79
  return 0;
80
}
80
}
81
81
82
static scm_sizet
82
static size_t
83
_mu_debug_port_free (SCM port)
83
_mu_debug_port_free (SCM port)
84
{
84
{
85
  _mu_debug_port_close (port);
85
  _mu_debug_port_close (port);
(-)a/libmu_scm/mu_mailbox.c (-1 / +1 lines)
Lines 37-43 mu_scm_mailbox_mark (SCM mailbox_smob) Link Here
37
  return SCM_BOOL_F;
37
  return SCM_BOOL_F;
38
}
38
}
39
39
40
static scm_sizet
40
static size_t
41
mu_scm_mailbox_free (SCM mailbox_smob)
41
mu_scm_mailbox_free (SCM mailbox_smob)
42
{
42
{
43
  struct mu_mailbox *mum = (struct mu_mailbox *) SCM_CDR (mailbox_smob);
43
  struct mu_mailbox *mum = (struct mu_mailbox *) SCM_CDR (mailbox_smob);
(-)a/libmu_scm/mu_message.c (-1 / +1 lines)
Lines 39-45 mu_scm_message_mark (SCM message_smob) Link Here
39
  return mum->mbox;
39
  return mum->mbox;
40
}
40
}
41
41
42
static scm_sizet
42
static size_t
43
mu_scm_message_free (SCM message_smob)
43
mu_scm_message_free (SCM message_smob)
44
{
44
{
45
  struct mu_message *mum = (struct mu_message *) SCM_CDR (message_smob);
45
  struct mu_message *mum = (struct mu_message *) SCM_CDR (message_smob);
(-)a/libmu_scm/mu_mime.c (-1 / +1 lines)
Lines 35-41 mu_scm_mime_mark (SCM mime_smob) Link Here
35
  return mum->owner;
35
  return mum->owner;
36
}
36
}
37
37
38
static scm_sizet
38
static size_t
39
mu_scm_mime_free (SCM mime_smob)
39
mu_scm_mime_free (SCM mime_smob)
40
{
40
{
41
  struct mu_mime *mum = (struct mu_mime *) SCM_CDR (mime_smob);
41
  struct mu_mime *mum = (struct mu_mime *) SCM_CDR (mime_smob);
(-)a/libmu_scm/mu_port.c (-1 / +1 lines)
Lines 147-153 mu_port_close (SCM port) Link Here
147
  return 0;
147
  return 0;
148
}
148
}
149
149
150
static scm_sizet
150
static size_t
151
mu_port_free (SCM port)
151
mu_port_free (SCM port)
152
{
152
{
153
  struct mu_port *mp = MU_PORT (port);
153
  struct mu_port *mp = MU_PORT (port);

Return to bug 640644