diff options
author | Mattias Andrée <maandree@member.fsf.org> | 2016-01-01 22:38:50 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@member.fsf.org> | 2016-01-01 22:38:50 +0100 |
commit | 6ffcfe4f585efcc27499257110abd51d5e52302d (patch) | |
tree | 77524484ac62f6dcb762c07afdb5945f6909d2fa | |
parent | massive simpliciation and small bug fixes (not tested yet) (diff) | |
download | sat-6ffcfe4f585efcc27499257110abd51d5e52302d.tar.gz sat-6ffcfe4f585efcc27499257110abd51d5e52302d.tar.bz2 sat-6ffcfe4f585efcc27499257110abd51d5e52302d.tar.xz |
typo
Signed-off-by: Mattias Andrée <maandree@member.fsf.org>
-rw-r--r-- | src/satd.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -63,7 +63,7 @@ create_lock(void) /* Store PID in the file. */ /* Yes it is coming similar to a PID file, but this works if the started with -f. */ - t (pwrite(fd, &pid, sizeof(pid), (off_t)0) < (size_t)sizeof(pid)); + t (pwrite(fd, &pid, sizeof(pid), (off_t)0) < (ssize_t)sizeof(pid)); goto done; fail: |