diff options
author | Christian Neukirchen <chneukirchen@gmail.com> | 2015-08-27 16:32:47 +0200 |
---|---|---|
committer | Christian Neukirchen <chneukirchen@gmail.com> | 2015-08-27 16:32:47 +0200 |
commit | 0eae839cb19f9384e742fb94e102042d25b89780 (patch) | |
tree | ecef62d77859480d99a6831e944bf69f30c9fef7 | |
parent | 2630da81ce77558ee30a90a3d8570df2eb5c7233 (diff) | |
download | nq-0eae839cb19f9384e742fb94e102042d25b89780.tar.gz nq-0eae839cb19f9384e742fb94e102042d25b89780.tar.xz nq-0eae839cb19f9384e742fb94e102042d25b89780.zip |
fq: style fixes
-rw-r--r-- | fq.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fq.c b/fq.c index cf02c2d..dc165db 100644 --- a/fq.c +++ b/fq.c @@ -44,9 +44,9 @@ islocked(int fd) } static int -alphabetic(const void* a, const void* b) +alphabetic(const void *a, const void *b) { - return strcmp(*(char**)a, *(char **)b); + return strcmp(*(char **)a, *(char **)b); } int |