mirror of
git://git.code.sf.net/p/cdesktopenv/code
synced 2025-02-13 19:52:20 +00:00
2 warnings fixed (64-bit)
Fix XtVaGetValues() output for 64-bit Fix filename comparison in Dts.c
This commit is contained in:
parent
91f228411e
commit
77ec7b56b8
2 changed files with 2 additions and 2 deletions
|
@ -130,7 +130,7 @@ broadcast_value(widget, client_data, call_data)
|
|||
Widget widget;
|
||||
XtPointer client_data, call_data;
|
||||
{
|
||||
int slider_value;
|
||||
XtArgVal slider_value;
|
||||
Tt_message msg_out;
|
||||
|
||||
/*
|
||||
|
|
|
@ -1180,7 +1180,7 @@ type_name(const char *name, char *attr)
|
|||
{
|
||||
int match = 0;
|
||||
|
||||
if(name && (int)name != -1)
|
||||
if(name && name != (char *)-1)
|
||||
{
|
||||
#ifdef USE_FNMATCH
|
||||
match = !fnmatch(attr, name, 0);
|
||||
|
|
Loading…
Reference in a new issue