From e2ff6cd574036660418ced7c1f1d692bc42eb87d Mon Sep 17 00:00:00 2001 From: Jason Stallings Date: Sat, 14 May 2016 23:49:14 -0500 Subject: [PATCH] Space before comment. --- src/robotjs.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/robotjs.cc b/src/robotjs.cc index d0e77709..5fcf9764 100644 --- a/src/robotjs.cc +++ b/src/robotjs.cc @@ -793,7 +793,7 @@ NAN_METHOD(saveBitmap) MMBitmapRef bitmap; MMImageType type = kBMPImageType; - //Get our image object from JavaScript. + // Get our image object from JavaScript. BMP img = buildBMP(Nan::To(info[0]).ToLocalChecked()); char *path; @@ -801,7 +801,7 @@ NAN_METHOD(saveBitmap) path = *string; - //Create the bitmap. + // Create the bitmap. bitmap = createMMBitmap(img.image, img.width, img.height, img.byteWidth, img.bitsPerPixel, img.bytesPerPixel); if (saveMMBitmapToFile(bitmap, path, type) != 0) {