GUAC-236: Correct typos in comments.
Project: http://git-wip-us.apache.org/repos/asf/incubator-guacamole-server/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-guacamole-server/commit/acf2d2b0 Tree: http://git-wip-us.apache.org/repos/asf/incubator-guacamole-server/tree/acf2d2b0 Diff: http://git-wip-us.apache.org/repos/asf/incubator-guacamole-server/diff/acf2d2b0 Branch: refs/heads/master Commit: acf2d2b0044980ad2f5a3d29053351c73df281e7 Parents: e3d1af1 Author: Michael Jumper <[email protected]> Authored: Tue Mar 15 12:26:13 2016 -0700 Committer: Michael Jumper <[email protected]> Committed: Tue Mar 15 12:26:13 2016 -0700 ---------------------------------------------------------------------- src/guacenc/guacenc.c | 2 +- src/guacenc/image-stream.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-guacamole-server/blob/acf2d2b0/src/guacenc/guacenc.c ---------------------------------------------------------------------- diff --git a/src/guacenc/guacenc.c b/src/guacenc/guacenc.c index 1c825bb..c552505 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."); http://git-wip-us.apache.org/repos/asf/incubator-guacamole-server/blob/acf2d2b0/src/guacenc/image-stream.h ---------------------------------------------------------------------- diff --git a/src/guacenc/image-stream.h b/src/guacenc/image-stream.h index 26660eb..ff36ee1 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
