summaryrefslogtreecommitdiff
path: root/src/delta
diff options
context:
space:
mode:
authorThomas Hindoe Paaboel Andersen <phomes@gmail.com>2012-11-12 22:37:20 +0100
committerThomas Hindoe Paaboel Andersen <phomes@gmail.com>2012-11-12 22:38:44 +0100
commit33b40551236a6c0c323226b78f1b1e5751a95ff5 (patch)
treeea91472eb972c570d6adc6baabc0749b028c4ae8 /src/delta
parent0c77310d3950d9577f6a8bcc5b5529624d230da2 (diff)
remove duplicate semicolons
Diffstat (limited to 'src/delta')
-rw-r--r--src/delta/delta.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/delta/delta.c b/src/delta/delta.c
index 803d2a7fc..494e82eb9 100644
--- a/src/delta/delta.c
+++ b/src/delta/delta.c
@@ -308,7 +308,7 @@ static int process_suffix_chop(const char *prefixes, const char *suffix) {
/* Strip prefix from the suffix */
NULSTR_FOREACH(p, prefixes) {
if (startswith(suffix, p)) {
- suffix += strlen(p);;
+ suffix += strlen(p);
suffix += strspn(suffix, "/");
return process_suffix(prefixes, suffix);
}