summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorAlbrecht Schlosser <albrechts.fltk@online.de>2023-02-02 17:03:09 +0100
committerAlbrecht Schlosser <albrechts.fltk@online.de>2023-02-02 17:09:14 +0100
commit4e75549e7bd8b0ea032cf279066d0fac09577067 (patch)
treed624dee7f9e58a9694328753f884cb6099324d7f /examples
parentfb00fb3d66d01613a1284090608db82424d83b0d (diff)
Update dependencies and fix whitespace errors
- replace tabs with spaces - remove trailing whitespace
Diffstat (limited to 'examples')
-rw-r--r--examples/animgifimage.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/animgifimage.cxx b/examples/animgifimage.cxx
index 515b76b65..9051fe325 100644
--- a/examples/animgifimage.cxx
+++ b/examples/animgifimage.cxx
@@ -196,7 +196,7 @@ bool openDirectory(const char *dir, char *flags) {
if (!p) continue;
if (*(p+4)) continue; // is no extension!
snprintf(buf, sizeof(buf), "%s/%s", dir, name);
- if (strstr(name, "debug")) // hack: when name contains 'debug' open single frames
+ if (strstr(name, "debug")) // hack: when name contains 'debug' open single frames
strcat(flags, "d");
if (openFile(buf, flags, cnt == 0))
cnt++;