summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJaywalker <jwilliams@nsllc.com>2018-02-07 00:15:24 -0600
committerJaywalker <jwilliams@nsllc.com>2018-02-07 00:15:24 -0600
commita227e74c6eeeca16ecb5dd6faa933e6d8c297841 (patch)
tree8a64a4e178bb2316153bfe6be1088e7927c7faa8
parent2d71f8c24d490b5a3773821264124f0ed5c9a9d2 (diff)
Missed a semicolon
-rw-r--r--apt-pkg/contrib/fileutl.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/apt-pkg/contrib/fileutl.cc b/apt-pkg/contrib/fileutl.cc
index e3fb1cc90..383a9b7aa 100644
--- a/apt-pkg/contrib/fileutl.cc
+++ b/apt-pkg/contrib/fileutl.cc
@@ -180,7 +180,7 @@ static char *searchpath(const char *binaryname){
strcpy(foundpath, binaryname);
return foundpath;
} else {
- return NULL
+ return NULL;
}
}