diff options
author | okan | 2014-01-03 15:29:06 +0000 |
---|---|---|
committer | okan | 2014-01-03 15:29:06 +0000 |
commit | 7c3d7c7e009aba5952f235258aecebf4a42fcd3a (patch) | |
tree | 7970da959e352c005af1dbe5fd3562f4e58088f5 /calmwm.c | |
parent | fa1e0bfcb82d655544296d192c8df094a7895039 (diff) | |
download | cwm-7c3d7c7e009aba5952f235258aecebf4a42fcd3a.tar.gz |
use consistent types
Diffstat (limited to 'calmwm.c')
-rw-r--r-- | calmwm.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -15,7 +15,7 @@ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * - * $OpenBSD: calmwm.c,v 1.81 2013/12/12 20:15:07 okan Exp $ + * $OpenBSD: calmwm.c,v 1.82 2014/01/03 15:29:06 okan Exp $ */ #include <sys/param.h> @@ -165,7 +165,7 @@ x_errorhandler(Display *dpy, XErrorEvent *e) XGetErrorDatabaseText(X_Dpy, "XRequest", number, "<unknown>", req, sizeof(req)); - warnx("%s(0x%x): %s", req, (u_int)e->resourceid, msg); + warnx("%s(0x%x): %s", req, (unsigned int)e->resourceid, msg); #endif return (0); } |