soap

simple xdg-open replacement with fallback
git clone git://git.2f30.org/soap
Log | Files | Refs | LICENSE

commit 7c93e2f8cd10f5127f7ceb13b8f57cdccbd550a1
parent a7a897397007e9efff5525ba3da49dbab2c0cd17
Author: Svyatoslav Mishyn <juef@openmailbox.org>
Date:   Wed, 10 Aug 2016 14:10:32 +0300

fix a warning

comparison of integers of different signs: 'int' and 'unsigned long' [-Wsign-compare]

Diffstat:
Msoap.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/soap.c b/soap.c @@ -12,7 +12,7 @@ typedef struct { int main(int argc, char *argv[]){ - int g, h, i; + size_t g, h, i; char cmd[BUFSIZ], sharg[BUFSIZ]; regex_t regex;