GUAC-236: Correct typos in comments.

This commit is contained in:
Michael Jumper 2016-03-15 12:26:13 -07:00
parent e3d1af1953
commit acf2d2b004
2 changed files with 2 additions and 2 deletions

View File

@ -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.");

View File

@ -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