diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2009-01-23 16:19:41 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2009-01-23 16:19:41 +0000 |
commit | 773b574ea25fabe74fa3715b86fe59b8190620f8 (patch) | |
tree | aaacb82a6613d3ffe60e3f04e17c7229c68afeff /paste.c | |
parent | af5bc517c0431a2ea23ba8463b7343d527dea374 (diff) | |
download | rtmux-773b574ea25fabe74fa3715b86fe59b8190620f8.tar.gz rtmux-773b574ea25fabe74fa3715b86fe59b8190620f8.tar.bz2 rtmux-773b574ea25fabe74fa3715b86fe59b8190620f8.zip |
Return -1 on error.
Diffstat (limited to 'paste.c')
-rw-r--r-- | paste.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -1,4 +1,4 @@ -/* $Id: paste.c,v 1.4 2008-08-28 17:45:26 nicm Exp $ */ +/* $Id: paste.c,v 1.5 2009-01-23 16:19:41 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -68,7 +68,7 @@ paste_free_top(struct paste_stack *ps) struct paste_buffer *pb; if (ARRAY_LENGTH(ps) == 0) - return (1); + return (-1); pb = ARRAY_FIRST(ps); ARRAY_REMOVE(ps, 0); @@ -85,7 +85,7 @@ paste_free_index(struct paste_stack *ps, u_int idx) struct paste_buffer *pb; if (idx >= ARRAY_LENGTH(ps)) - return (1); + return (-1); pb = ARRAY_ITEM(ps, idx); ARRAY_REMOVE(ps, idx); @@ -118,7 +118,7 @@ paste_replace(struct paste_stack *ps, u_int idx, const char *data) struct paste_buffer *pb; if (idx >= ARRAY_LENGTH(ps)) - return (1); + return (-1); pb = ARRAY_ITEM(ps, idx); xfree(pb->data); |