Skip to content
Snippets Groups Projects
Commit fb787e7a authored by Peter Hutterer's avatar Peter Hutterer
Browse files

touchpad: invert an if condition to allow for early return


	if (foo) {
	    everything
	}

changed to :

	if (!foo)
	    return
	everything

Signed-off-by: default avatarPeter Hutterer <peter.hutterer@who-t.net>
parent 6b99fabf
No related branches found
No related tags found
No related merge requests found
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment