~ubuntu-branches/ubuntu/hardy/gnome-applets/hardy-updates

« back to all changes in this revision

Viewing changes to trashapplet/src/xstuff.c

  • Committer: Bazaar Package Importer
  • Author(s): Sebastien Bacher
  • Date: 2008-02-26 09:27:38 UTC
  • mto: This revision was merged to the branch mainline in revision 66.
  • Revision ID: james.westby@ubuntu.com-20080226092738-75jsq058qu9w4qwq
Tags: upstream-2.21.92
ImportĀ upstreamĀ versionĀ 2.21.92

Show diffs side-by-side

added added

removed removed

Lines of Context:
90
90
      requested_type != AnyPropertyType &&
91
91
      requested_type != type_returned)
92
92
    {
93
 
      g_warning (G_GNUC_PRETTY_FUNCTION "(): Property has wrong type, probably on crack");
 
93
      g_warning ("%s(): Property has wrong type, probably on crack", G_STRFUNC);
94
94
      abort++;
95
95
    }
96
96
  if (!abort && bytes_after_return)
97
97
    {
98
 
      g_warning (G_GNUC_PRETTY_FUNCTION "(): Eeek, property has more than %u bytes, stored on harddisk?",
99
 
                 prop_buffer_lengh);
 
98
      g_warning ("%s(): Eeek, property has more than %u bytes, stored on harddisk?",
 
99
                 G_STRFUNC, prop_buffer_lengh);
100
100
      abort++;
101
101
    }
102
102
  if (!abort && expected_format && expected_format != format_returned)
103
103
    {
104
 
      g_warning (G_GNUC_PRETTY_FUNCTION "(): Expected format (%u) unmatched (%d), programmer was drunk?",
105
 
                 expected_format, format_returned);
 
104
      g_warning ("%s(): Expected format (%u) unmatched (%d), programmer was drunk?",
 
105
                 G_STRFUNC, expected_format, format_returned);
106
106
      abort++;
107
107
    }
108
108
  if (!abort && prop_data && nitems_return && format_returned)