X-Git-Url: http://ncurses.scripts.mit.edu/?p=ncurses.git;a=blobdiff_plain;f=form%2Ffty_num.c;h=d45cb906794fe1af6313ed3b7eaa82a24e3743ee;hp=cd09dfb001fe3fbb869ff3979c75acf54c4c9391;hb=5242fccf157e715ed878455a3efea6c82b840eb5;hpb=027ae42953e3186daed8f3882da73de48291b606 diff --git a/form/fty_num.c b/form/fty_num.c index cd09dfb0..d45cb906 100644 --- a/form/fty_num.c +++ b/form/fty_num.c @@ -1,5 +1,5 @@ /**************************************************************************** - * Copyright (c) 1998-2005,2006 Free Software Foundation, Inc. * + * Copyright (c) 1998-2006,2007 Free Software Foundation, Inc. * * * * Permission is hereby granted, free of charge, to any person obtaining a * * copy of this software and associated documentation files (the * @@ -34,7 +34,7 @@ #include "form.priv.h" -MODULE_ID("$Id: fty_num.c,v 1.23 2006/04/22 21:33:05 tom Exp $") +MODULE_ID("$Id: fty_num.c,v 1.24 2007/02/03 23:37:46 tom Exp $") #if HAVE_LOCALE_H #include @@ -78,6 +78,7 @@ Make_This_Type(va_list *ap) if (argn) { + T((T_CREATE("thisARG %p"), argn)); argn->precision = va_arg(*ap, int); argn->low = va_arg(*ap, double); argn->high = va_arg(*ap, double); @@ -109,7 +110,10 @@ Copy_This_Type(const void *argp) { result = (thisARG *) malloc(sizeof(thisARG)); if (result) - *result = *ap; + { + T((T_CREATE("thisARG %p"), result)); + *result = *ap; + } } return (void *)result; }