diff --git a/src/Canvas.cc b/src/Canvas.cc index c727416..2a6a185 100644 --- a/src/Canvas.cc +++ b/src/Canvas.cc @@ -54,9 +54,7 @@ Canvas::Initialize(Handle target) { Handle Canvas::New(const Arguments &args) { HandleScope scope; - int width = 0 - , height = 0; - + int width = 0, height = 0; if (args[0]->IsNumber()) width = args[0]->Uint32Value(); if (args[1]->IsNumber()) height = args[1]->Uint32Value(); Canvas *canvas = new Canvas(width, height);