summaryrefslogtreecommitdiff
path: root/xdiff/xemit.c
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2013-10-30 12:10:06 -0700
committerJunio C Hamano <gitster@pobox.com>2013-10-30 12:10:06 -0700
commit0bfc7c10d865697cc59081a4bc55a3add4958be0 (patch)
treed73eda3413bed427be382df53d172de761e0b544 /xdiff/xemit.c
parent9907d1359ccb1e670a408e5ab91d2b6048bd997b (diff)
parent6b2dd0e56ba2bd668396afe9e983dddfd1f441ca (diff)
downloadgit-0bfc7c10d865697cc59081a4bc55a3add4958be0.tar.gz
Merge branch 'fc/styles'
C coding style fixes. * fc/styles: block-sha1/sha1.c: have SP around arithmetic operators base85.c: have SP around arithmetic operators archive.c: have SP around arithmetic operators alloc.c: have SP around arithmetic operators abspath.c: have SP around arithmetic operators alias: have SP around arithmetic operators C: have space around && and || operators
Diffstat (limited to 'xdiff/xemit.c')
-rw-r--r--xdiff/xemit.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/xdiff/xemit.c b/xdiff/xemit.c
index 4d8645867e..4266ada23f 100644
--- a/xdiff/xemit.c
+++ b/xdiff/xemit.c
@@ -108,7 +108,7 @@ static long def_ff(const char *rec, long len, char *buf, long sz, void *priv)
{
if (len > 0 &&
(isalpha((unsigned char)*rec) || /* identifier? */
- *rec == '_' || /* also identifier? */
+ *rec == '_' || /* also identifier? */
*rec == '$')) { /* identifiers from VMS and other esoterico */
if (len > sz)
len = sz;