X-Git-Url: http://git.marmaro.de/?p=mmh;a=blobdiff_plain;f=sbr%2Fseq_list.c;fp=sbr%2Fseq_list.c;h=1e2e606a6b418a92c84c62dd767f50c6fbc10f85;hp=87c5d04f190c1c9d58c8e47b6aa2783fa2efcda6;hb=714b5c530ece27ea2835a313013f5b770163403c;hpb=ced6090a330d3d83d0bce709f756aa3d7d65fea4 diff --git a/sbr/seq_list.c b/sbr/seq_list.c index 87c5d04..1e2e606 100644 --- a/sbr/seq_list.c +++ b/sbr/seq_list.c @@ -27,7 +27,7 @@ seq_list(struct msgs *mp, char *seqname) /* On first invocation, allocate initial buffer space */ if (!buffer) { len = MAXBUFFER; - buffer = mh_xmalloc ((size_t) len); + buffer = mh_xmalloc((size_t) len); } /* @@ -36,7 +36,7 @@ seq_list(struct msgs *mp, char *seqname) ** This is returned, even if message doesn't exist or the ** folder is empty. */ - if (!strcmp (current, seqname)) { + if (!strcmp(current, seqname)) { if (mp->curmsg) { sprintf(buffer, "%s", m_name(mp->curmsg)); return (buffer); @@ -49,7 +49,7 @@ seq_list(struct msgs *mp, char *seqname) return NULL; /* Get the index of the sequence */ - if ((seqnum = seq_getnum (mp, seqname)) == -1) + if ((seqnum = seq_getnum(mp, seqname)) == -1) return NULL; bp = buffer; @@ -72,7 +72,7 @@ seq_list(struct msgs *mp, char *seqname) char *newbuf; len += MAXBUFFER; - newbuf = mh_xrealloc (buffer, (size_t) len); + newbuf = mh_xrealloc(buffer, (size_t) len); bp = newbuf + (bp - buffer); buffer = newbuf; }