commit 03436cbdedb87008bff1856058098e566d0f24d8
parent 1f93cfeab1e123e6dafd1e1a8d7ad16f17a87351
Author: Remy Noulin <loader2x@gmail.com>
Date: Mon, 15 Oct 2018 22:04:42 +0200
fix compilation errors due to updates in libsheepy
edCore.c | 4 ++--
package.yml | 8 +++++---
2 files changed, 7 insertions(+), 5 deletions(-)
Diffstat:
2 files changed, 7 insertions(+), 5 deletions(-)
diff --git a/edCore.c b/edCore.c
@@ -333,7 +333,7 @@ void edi_log(const char *s) {
char *fn = appendG(data_location, "/log.txt");
FILE *f = fopen(fn, "a");
if (!f) {
- goto ret;
+ goto retn;
}
char *sT = trimG(s);
@@ -342,7 +342,7 @@ void edi_log(const char *s) {
fprintf(f, "%s - %s <%s> - %s\n", t, user, email, sT);
freeManyS(sT, t);
fclose(f);
-ret:
+retn:
free(fn);
}
diff --git a/package.yml b/package.yml
@@ -6,15 +6,17 @@
lflags: -lncurses
repository:
type: git
- url: git+https://github.com/RemyNoulin/easydoneitCTui.git
+ url: git+https://github.com/RemyNoulin/libsheepy.git
keywords:
- utility
- command
+ - todo
author: Remy Noulin
license: MIT
bugs:
- url: https://github.com/RemyNoulin/easydoneitCTui/issues
- homepage: https://github.com/RemyNoulin/easydoneitCTui
+ url: https://github.com/RemyNoulin/libsheepy/issues
+ homepage: https://github.com/RemyNoulin/libsheepy#readme
+ compileHelp: "This package depends on: (debian) ncurses-dev, (fedora) ncurses-devel"
dependencies:
ini: ""
md: ""