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:30:00 +0300
committerhoh miyazawa <hohMiyazawa@yandex.com>2021-05-22 17:30:00 +0300
commit9138b26e361085672226f9e5956877cd29ff0c76 (patch)
treef7c8689168c64718d2a679851bd5f5880b0e3d34
parentf57d1b78afe592ea2a957434c796e27d1870672d (diff)
provice -> provide
-rw-r--r--examples/example_bmp2png.cpp2
-rw-r--r--examples/example_png2bmp.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/examples/example_bmp2png.cpp b/examples/example_bmp2png.cpp
index 7bf15cb..b2f7f98 100644
--- a/examples/example_bmp2png.cpp
+++ b/examples/example_bmp2png.cpp
@@ -97,7 +97,7 @@ unsigned decodeBMP(std::vector<unsigned char>& image, unsigned& w, unsigned& h,
int main(int argc, char *argv[]) {
if(argc < 3) {
- std::cout << "Please provice input PNG and output BMP file names" << std::endl;
+ std::cout << "Please provide input PNG and output BMP file names" << std::endl;
return 0;
}
diff --git a/examples/example_png2bmp.cpp b/examples/example_png2bmp.cpp
index ae12298..daa1ee6 100644
--- a/examples/example_png2bmp.cpp
+++ b/examples/example_png2bmp.cpp
@@ -101,7 +101,7 @@ void encodeBMP(std::vector<unsigned char>& bmp, const unsigned char* image, int
int main(int argc, char *argv[]) {
if(argc < 3) {
- std::cout << "Please provice input PNG and output BMP file names" << std::endl;
+ std::cout << "Please provide input PNG and output BMP file names" << std::endl;
return 0;
}
const char* infile = argv[1];