diff options
author | June McEnroe <june@causal.agency> | 2017-05-01 14:52:57 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2017-05-01 14:52:57 -0400 |
commit | c3452f4e1f4b7197a99e5109c068effae01b1364 (patch) | |
tree | ad3b965d47e2befba51f071cf9ed312a8b708bf7 | |
parent | Clean up clock (diff) | |
download | src-c3452f4e1f4b7197a99e5109c068effae01b1364.tar.gz src-c3452f4e1f4b7197a99e5109c068effae01b1364.zip |
Use EX_OK in pbcopy
-rwxr-xr-x | .bin/pbcopy.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.bin/pbcopy.c b/.bin/pbcopy.c index 852da68d..23403d2d 100755 --- a/.bin/pbcopy.c +++ b/.bin/pbcopy.c @@ -51,5 +51,5 @@ int main() { } if (readLen < 0) err(EX_IOERR, "read"); - return 0; + return EX_OK; } |