gnome-keyring r1451 - in trunk: . pkcs11/gck
- From: asaleem svn gnome org
- To: svn-commits-list gnome org
- Subject: gnome-keyring r1451 - in trunk: . pkcs11/gck
- Date: Fri, 9 Jan 2009 07:01:54 +0000 (UTC)
Author: asaleem
Date: Fri Jan 9 07:01:54 2009
New Revision: 1451
URL: http://svn.gnome.org/viewvc/gnome-keyring?rev=1451&view=rev
Log:
fix compile (bug #567117)
Modified:
trunk/ChangeLog
trunk/pkcs11/gck/gck-file-store.c
Modified: trunk/pkcs11/gck/gck-file-store.c
==============================================================================
--- trunk/pkcs11/gck/gck-file-store.c (original)
+++ trunk/pkcs11/gck/gck-file-store.c Fri Jan 9 07:01:54 2009
@@ -135,7 +135,7 @@
if (errno == EAGAIN && errno == EINTR)
continue;
if (res < 0 || len != all)
- g_warning ("couldn't read %u bytes from store file: %s", all,
+ g_warning ("couldn't read %lu bytes from store file: %s", all,
g_strerror (errno));
return FALSE;
} else {
@@ -160,7 +160,7 @@
if (res <= 0) {
if (errno == EAGAIN && errno == EINTR)
continue;
- g_warning ("couldn't write %u bytes to store file: %s", all,
+ g_warning ("couldn't write %lu bytes to store file: %s", all,
res < 0 ? g_strerror (errno) : "");
return FALSE;
} else {
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]