diff options
| author | Drew DeVault <[email protected]> | 2018-08-15 18:54:34 -0400 | 
|---|---|---|
| committer | Drew DeVault <[email protected]> | 2018-08-15 18:54:34 -0400 | 
| commit | fc3609dba2fa809904ecce19a10d21ac01466f28 (patch) | |
| tree | 513b973c035a7da3e99e5f90c3f37a83992b4592 /tinywl.c | |
| parent | dc9fc13c68a9fd4f1f4d7027370ffaed72ad9047 (diff) | |
Fix uninitialized variable
Diffstat (limited to 'tinywl.c')
| -rw-r--r-- | tinywl.c | 2 | 
1 files changed, 1 insertions, 1 deletions
@@ -370,7 +370,7 @@ static void render_surface(struct wlr_surface *surface,  		return;  	} -	double ox, oy; +	double ox = 0, oy = 0;  	wlr_output_layout_output_coords(  			view->server->output_layout, output, &ox, &oy);  	ox += view->x + sx, oy += view->y + sy;  | 
