aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--examples/print-thread-safe.c5
-rw-r--r--examples/print-tty.c1
2 files changed, 4 insertions, 2 deletions
diff --git a/examples/print-thread-safe.c b/examples/print-thread-safe.c
index d1d3c55..c21d624 100644
--- a/examples/print-thread-safe.c
+++ b/examples/print-thread-safe.c
@@ -16,13 +16,14 @@ int main(void)
if (el_option(EL_THREAD_SAFE, 1) != 0)
{
el_perror(ELF, "Failed to enable thread safety");
- goto error;
+ el_cleanup();
+ return 1;
}
el_print(ELI, "Yeaaa.... there is no really good way to show");
el_print(ELI, "how pthread works in action, so this just checks");
el_print(ELI, "whether locking works at all");
-error:
el_cleanup();
+ return 0;
}
diff --git a/examples/print-tty.c b/examples/print-tty.c
index ec90d01..889afe3 100644
--- a/examples/print-tty.c
+++ b/examples/print-tty.c
@@ -27,6 +27,7 @@ int main(void)
if (el_option(EL_TTY_DEV, "/dev/ttyUSB1", B9600) != 0)
{
perror("tty set failed");
+ el_cleanup();
return 1;
}