X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=client%2Fadmin.c;h=7812b65388987a0acaa0e167e4d97d267811c6da;hb=cde148647135f1a06f5b5ebf769430a9615d86bc;hp=50ddaf88f37501e4018bdb9a5dad96e59a70d8bd;hpb=7ef1b50f481cda83d012cc3d69d83f9313836f1f;p=yaz-moved-to-github.git diff --git a/client/admin.c b/client/admin.c index 50ddaf8..7812b65 100644 --- a/client/admin.c +++ b/client/admin.c @@ -1,5 +1,5 @@ /* This file is part of the YAZ toolkit. - * Copyright (C) 1995-2008 Index Data + * Copyright (C) 1995-2010 Index Data * See the file LICENSE for details. */ @@ -236,7 +236,7 @@ int cmd_adm_import(const char *arg) oct->len = oct->size = status.st_size; oct->buf = (unsigned char *) odr_malloc (out, oct->size); - if (fread(oct->buf, 1, oct->size, inf) != oct->size) + if (fread(oct->buf, 1, oct->size, inf) != (size_t) oct->size) { printf("Incomplete read of file %s\n", fname); } @@ -305,6 +305,7 @@ int cmd_adm_startup(const char *arg) /* * Local variables: * c-basic-offset: 4 + * c-file-style: "Stroustrup" * indent-tabs-mode: nil * End: * vim: shiftwidth=4 tabstop=8 expandtab