mirror of
git://git.code.sf.net/p/cdesktopenv/code
synced 2025-03-09 15:50:02 +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;
|
Widget widget;
|
||||||
XtPointer client_data, call_data;
|
XtPointer client_data, call_data;
|
||||||
{
|
{
|
||||||
int slider_value;
|
XtArgVal slider_value;
|
||||||
Tt_message msg_out;
|
Tt_message msg_out;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
|
@ -1180,7 +1180,7 @@ type_name(const char *name, char *attr)
|
||||||
{
|
{
|
||||||
int match = 0;
|
int match = 0;
|
||||||
|
|
||||||
if(name && (int)name != -1)
|
if(name && name != (char *)-1)
|
||||||
{
|
{
|
||||||
#ifdef USE_FNMATCH
|
#ifdef USE_FNMATCH
|
||||||
match = !fnmatch(attr, name, 0);
|
match = !fnmatch(attr, name, 0);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue