From 09a8188452cf123daa6a01441c143a18ca7c10d4 Mon Sep 17 00:00:00 2001 From: Gedare Bloom Date: Mon, 23 Apr 2012 09:56:14 -0400 Subject: PR2056: libqos conversion from uint32_t to time_t AquosA defines qres_params_t using qres_time_t so we should also. This fixes an invalid conversion from uint32_t into time_t as well. --- cpukit/libqos/qreslib.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'cpukit/libqos/qreslib.h') diff --git a/cpukit/libqos/qreslib.h b/cpukit/libqos/qreslib.h index 110cc2f6be..5db036a609 100644 --- a/cpukit/libqos/qreslib.h +++ b/cpukit/libqos/qreslib.h @@ -67,9 +67,9 @@ typedef time_t qres_atime_t; /** Server parameters. */ typedef struct { /** Relative deadline of the server. */ - uint32_t P; + qres_time_t P; /** Budget (computation time) of the server. */ - uint32_t Q; + qres_time_t Q; } qres_params_t; /** -- cgit v1.2.3