summaryrefslogtreecommitdiff
path: root/src/communications.c
diff options
context:
space:
mode:
authorsabetts <sabetts>2005-01-15 05:35:59 +0000
committersabetts <sabetts>2005-01-15 05:35:59 +0000
commit122905248ec7c0ffd0b26fb5f782dab3fef7b495 (patch)
treeafa696fa0d56df82b27fa01d53ea3464c71a0338 /src/communications.c
parent06cabefa30b1838dbe6ba28aa62a6f5f7318834a (diff)
downloadratpoison-122905248ec7c0ffd0b26fb5f782dab3fef7b495.zip
* src/globals.h (RET_SUCCESS): set to 1
(RET_FAILURE): set to 0 * src/communications.c (receive_command_result) (receive_command_result): fix error deciding when to print to stderr.
Diffstat (limited to 'src/communications.c')
-rw-r--r--src/communications.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/communications.c b/src/communications.c
index 51da24a..8c86b60 100644
--- a/src/communications.c
+++ b/src/communications.c
@@ -75,7 +75,7 @@ receive_command_result (Window w)
/* If result is not the empty string, print it. */
if (strlen ((char *)result))
{
- if (result[1] == '0')
+ if (result[0] == '1')
printf ("%s\n", &result[1]);
else
fprintf (stderr, "%s\n", &result[1]);