diff options
Diffstat (limited to 'nx-X11/programs/Xserver/hw/nxagent/Utils.h')
-rw-r--r-- | nx-X11/programs/Xserver/hw/nxagent/Utils.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/nx-X11/programs/Xserver/hw/nxagent/Utils.h b/nx-X11/programs/Xserver/hw/nxagent/Utils.h index a3cbc2e9f..8a3335424 100644 --- a/nx-X11/programs/Xserver/hw/nxagent/Utils.h +++ b/nx-X11/programs/Xserver/hw/nxagent/Utils.h @@ -48,4 +48,8 @@ #define MAX(A, B) ( (A) > (B) ? (A) : (B) ); #endif +static inline const char * validateString(const char *str) { + return str ? str : "(null)"; +} + #endif /* __Utils_H__ */ |