Avoid starting a comment with */*

Even though -Wcomment doesn't mind it (in gcc or clang), the appearance
of */* confuses the syntax highlighter of some editors (eg. vim), and
causes warnings in MSVC.

Signed-off-by: Peter Harris <pharris@opentext.com>
Reviewed-by: Keith Packard <keithp@keithp.com>
Signed-off-by: Keith Packard <keithp@keithp.com>
This commit is contained in:
Peter Harris
2014-03-10 18:31:33 -04:00
committed by Keith Packard
parent 8b36e1ec8d
commit 5eb77697ea
18 changed files with 239 additions and 248 deletions

View File

@@ -314,10 +314,10 @@ extern _X_EXPORT Bool InitTouchClassDeviceStruct(DeviceIntPtr /*device */ ,
unsigned int /*mode */ ,
unsigned int /*numAxes */ );
typedef void (*BellProcPtr) (int /*percent */ ,
DeviceIntPtr /*device */ ,
void */*ctrl */ ,
int);
typedef void (*BellProcPtr) (int percent,
DeviceIntPtr device,
void *ctrl,
int feedbackClass);
typedef void (*KbdCtrlProcPtr) (DeviceIntPtr /*device */ ,
KeybdCtrl * /*ctrl */ );