aboutsummaryrefslogtreecommitdiffstats
path: root/src/mds-clipboard.c
diff options
context:
space:
mode:
authorMattias Andrée <maandree@operamail.com>2014-12-08 18:14:54 +0100
committerMattias Andrée <maandree@operamail.com>2014-12-08 18:14:54 +0100
commita45a3204a0b093d6899249b18808692e3f8ac863 (patch)
tree8922112c324fda189a0571fd1bcc2685d21a1474 /src/mds-clipboard.c
parentwhenever fail_if gotos to the failure clause, print whence (diff)
downloadmds-a45a3204a0b093d6899249b18808692e3f8ac863.tar.gz
mds-a45a3204a0b093d6899249b18808692e3f8ac863.tar.bz2
mds-a45a3204a0b093d6899249b18808692e3f8ac863.tar.xz
replace all goto pfail with fail_if, so that we can take whence it failed
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to '')
-rw-r--r--src/mds-clipboard.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mds-clipboard.c b/src/mds-clipboard.c
index 1d4de37..09cb599 100644
--- a/src/mds-clipboard.c
+++ b/src/mds-clipboard.c
@@ -361,8 +361,8 @@ int master_loop(void)
}
else if (errno == EINTR)
continue;
- else if (errno != ECONNRESET)
- goto pfail;
+ else
+ fail_if (errno != ECONNRESET);
eprint("lost connection to server.");
mds_message_destroy(&received);
@@ -854,7 +854,7 @@ int clipboard_set_size(int level, size_t size)
if (xrealloc(clipboard[level], size, clipitem_t))
{
clipboard[level] = old;
- goto pfail;
+ fail_if (1);
}
clipboard_size[level] = size;
}