# HG changeset patch
# User Martin Troxler <ch1010277@ch10pc446>
# Date 1292510881 -3600
# Node ID 2d7e29d82e9a5e0b1521f6f84426a0da259a523a
# Parent  96e2ae6cce953e0b5194dfa201bbf5797640f231
fixed warning due to 64bit size_t

diff -r 96e2ae6cce95 -r 2d7e29d82e9a lib/slave_config.c
--- a/lib/slave_config.c	Thu Dec 16 15:47:28 2010 +0100
+++ b/lib/slave_config.c	Thu Dec 16 15:48:01 2010 +0100
@@ -432,7 +432,7 @@
     if (size) {
         req->data = malloc(size);
         if (!req->data) {
-            fprintf(stderr, "Failed to allocate %u bytes of SDO data"
+            fprintf(stderr, "Failed to allocate %zu bytes of SDO data"
                     " memory.\n", size);
             free(req);
             return 0;
@@ -501,7 +501,7 @@
     if (size) {
         voe->data = malloc(size);
         if (!voe->data) {
-            fprintf(stderr, "Failed to allocate %u bytes of VoE data"
+            fprintf(stderr, "Failed to allocate %zu bytes of VoE data"
                     " memory.\n", size);
             free(voe);
             return 0;