projects
/
handbrake
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c029d66
)
build: fix regex probe
author
John Stebbins
<jstebbins.hb@gmail.com>
Sun, 13 Mar 2016 18:18:25 +0000
(12:18 -0600)
committer
John Stebbins
<jstebbins.hb@gmail.com>
Sun, 13 Mar 2016 18:18:25 +0000
(12:18 -0600)
make/configure.py
patch
|
blob
|
history
diff --git
a/make/configure.py
b/make/configure.py
index 319fe7ad7d805b6a3279b53b1745261a16c164d9..2b29d7c86181fb54173647d6ebaa87940ed6b58f 100644
(file)
--- a/
make/configure.py
+++ b/
make/configure.py
@@
-1644,7
+1644,7
@@
int main()
int rv;
regex_t exp;
- rv = regcomp(&exp, "^[0-9]+$"
;"
, REG_EXTENDED);
+ rv = regcomp(&exp, "^[0-9]+$", REG_EXTENDED);
if (rv != 0) {
return 1;
}