Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/lvandeve/lodepng.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhoh miyazawa <hohMiyazawa@yandex.com>2021-05-22 17:28:32 +0300
committerhoh miyazawa <hohMiyazawa@yandex.com>2021-05-22 17:28:32 +0300
commitf57d1b78afe592ea2a957434c796e27d1870672d (patch)
tree7b2ee1400ade739722bf31f27842ce936571370e
parent7fdcc96a5e5864eee72911c3ca79b1d9f0d12292 (diff)
overwrite warning applies to all examples
-rw-r--r--examples/example_encode.c2
-rw-r--r--examples/example_encode.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/examples/example_encode.c b/examples/example_encode.c
index ce43aba..11149ee 100644
--- a/examples/example_encode.c
+++ b/examples/example_encode.c
@@ -30,7 +30,7 @@ freely, subject to the following restrictions:
/*
3 ways to encode a PNG from RGBA pixel data to a file (and 2 in-memory ways).
-NOTE: this samples overwrite the file or test.png without warning!
+NOTE: these samples overwrite the file or test.png without warning!
*/
/*
diff --git a/examples/example_encode.cpp b/examples/example_encode.cpp
index 228ac03..fc1a004 100644
--- a/examples/example_encode.cpp
+++ b/examples/example_encode.cpp
@@ -28,7 +28,7 @@ freely, subject to the following restrictions:
/*
3 ways to encode a PNG from RGBA pixel data to a file (and 2 in-memory ways).
-NOTE: this samples overwrite the file or test.png without warning!
+NOTE: these samples overwrite the file or test.png without warning!
*/
//g++ lodepng.cpp examples/example_encode.cpp -I./ -ansi -pedantic -Wall -Wextra -O3