From a1fb129d0b3bdc27f47ef2217a55537b74682c77 Mon Sep 17 00:00:00 2001 From: Andrew Elder Date: Thu, 3 Jan 2013 12:34:01 -0500 Subject: [PATCH] examples: mrp_client, fix compiler warning --- examples/mrp_client/mrpdhelper.c | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/examples/mrp_client/mrpdhelper.c b/examples/mrp_client/mrpdhelper.c index b413e23..7db0e6a 100755 --- a/examples/mrp_client/mrpdhelper.c +++ b/examples/mrp_client/mrpdhelper.c @@ -52,18 +52,18 @@ struct app_state_to_enum { char *s; enum mrpdhelper_applicant_state value; } mrp_app_state_mapping[12] = { - "VO", mrpdhelper_applicant_state_VO, - "VP", mrpdhelper_applicant_state_VP, - "VN", mrpdhelper_applicant_state_VN, - "AN", mrpdhelper_applicant_state_AN, - "AA", mrpdhelper_applicant_state_AA, - "QA", mrpdhelper_applicant_state_QA, - "LA", mrpdhelper_applicant_state_LA, - "AO", mrpdhelper_applicant_state_AO, - "QO", mrpdhelper_applicant_state_QO, - "AP", mrpdhelper_applicant_state_AP, - "QP", mrpdhelper_applicant_state_QP, - "LO", mrpdhelper_applicant_state_LO + {"VO", mrpdhelper_applicant_state_VO}, + {"VP", mrpdhelper_applicant_state_VP}, + {"VN", mrpdhelper_applicant_state_VN}, + {"AN", mrpdhelper_applicant_state_AN}, + {"AA", mrpdhelper_applicant_state_AA}, + {"QA", mrpdhelper_applicant_state_QA}, + {"LA", mrpdhelper_applicant_state_LA}, + {"AO", mrpdhelper_applicant_state_AO}, + {"QO", mrpdhelper_applicant_state_QO}, + {"AP", mrpdhelper_applicant_state_AP}, + {"QP", mrpdhelper_applicant_state_QP}, + {"LO", mrpdhelper_applicant_state_LO} }; -- 2.7.4