The following patch helped to come out of a build issue caused by
signed/unsigned conflict
F.Y.I if that might help
mbcsv.cc: In function âuint32_t avnd_evt_avd_role_change_evh(AVND_CB*,
AVND_EVT*)â:
mbcsv.cc:1293: error: comparison between signed and unsigned integer expressions
diff --git a/osaf/services/saf/amf/amfnd/mbcsv.cc
b/osaf/services/saf/amf/amfnd/mbcsv.cc
--- a/osaf/services/saf/amf/amfnd/mbcsv.cc
+++ b/osaf/services/saf/amf/amfnd/mbcsv.cc
@@ -1290,7 +1290,7 @@ uint32_t avnd_evt_avd_role_change_evh(AV
prev_ha_state = cb->avail_state_avnd;
/* Ignore the duplicate roles. */
- if (prev_ha_state == info->role) {
+ if (prev_ha_state == (SaAmfHAStateT)info->role) {
return NCSCC_RC_SUCCESS;
}
Cheers,
Mathi.
------------------------------------------------------------------------------
October Webinars: Code for Performance
Free Intel webinars can help you accelerate application performance.
Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most from
the latest Intel processors and coprocessors. See abstracts and register >
http://pubads.g.doubleclick.net/gampad/clk?id=60133471&iu=/4140/ostg.clktrk
_______________________________________________
Opensaf-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/opensaf-devel