From acf2d2b0044980ad2f5a3d29053351c73df281e7 Mon Sep 17 00:00:00 2001 From: Michael Jumper Date: Tue, 15 Mar 2016 12:26:13 -0700 Subject: [PATCH] GUAC-236: Correct typos in comments. --- src/guacenc/guacenc.c | 2 +- src/guacenc/image-stream.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/guacenc/guacenc.c b/src/guacenc/guacenc.c index 1c825bb5..c5525056 100644 --- a/src/guacenc/guacenc.c +++ b/src/guacenc/guacenc.c @@ -45,7 +45,7 @@ int main(int argc, char* argv[]) { int opt; while ((opt = getopt(argc, argv, "s:r:")) != -1) { - /* -d: Dimensions */ + /* -s: Dimensions (WIDTHxHEIGHT) */ if (opt == 's') { if (guacenc_parse_dimensions(optarg, &width, &height)) { guacenc_log(GUAC_LOG_ERROR, "Invalid dimensions."); diff --git a/src/guacenc/image-stream.h b/src/guacenc/image-stream.h index 26660eba..ff36ee1f 100644 --- a/src/guacenc/image-stream.h +++ b/src/guacenc/image-stream.h @@ -30,7 +30,7 @@ /** * The initial number of bytes to allocate for the image data buffer. If this - * buffer is not sufficiently larged, it will be dynamically reallocated as it + * buffer is not sufficiently large, it will be dynamically reallocated as it * grows. */ #define GUACENC_IMAGE_STREAM_INITIAL_LENGTH 4096