summaryrefslogtreecommitdiffstats
path: root/src/util/profile/prof_file.c
diff options
context:
space:
mode:
authorEzra Peisach <epeisach@mit.edu>2000-07-24 16:16:28 +0000
committerEzra Peisach <epeisach@mit.edu>2000-07-24 16:16:28 +0000
commitdf46f3e4ddddddf7302edca3fa2b98cb68ac8df2 (patch)
treec6a49c7baf8cc0cd6351a733a5a94a84b9dd9019 /src/util/profile/prof_file.c
parent80c58c2c1a01da0e6a066b2be1a569d4ab624672 (diff)
downloadkrb5-df46f3e4ddddddf7302edca3fa2b98cb68ac8df2.tar.gz
krb5-df46f3e4ddddddf7302edca3fa2b98cb68ac8df2.tar.xz
krb5-df46f3e4ddddddf7302edca3fa2b98cb68ac8df2.zip
* prof_init.c: Cleanup internal type warnings in calls to profile_init
* test_parse.c (main): Cast arguments to error_message. * prof_file.c (profile_open_file): Variable with argument to malloc should be unsigned. * profile.hin: Revert changes to const_profile_filespect_t and profile_filespec_t to preserve interface. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@12585 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/util/profile/prof_file.c')
-rw-r--r--src/util/profile/prof_file.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util/profile/prof_file.c b/src/util/profile/prof_file.c
index 77c4f551e..83f447729 100644
--- a/src/util/profile/prof_file.c
+++ b/src/util/profile/prof_file.c
@@ -73,7 +73,7 @@ errcode_t profile_open_file(filespec, ret_prof)
prf_file_t prf;
errcode_t retval;
char *home_env = 0;
- int len;
+ unsigned int len;
prf = malloc(sizeof(struct _prf_file_t));
if (!prf)