Commit b55b84bd authored by service's avatar service

Compile on Debian 8

parent 119450ab
...@@ -116,7 +116,7 @@ unsigned int qcom_receive() ...@@ -116,7 +116,7 @@ unsigned int qcom_receive()
if (debug) printf("Received message %d\n", get.size); if (debug) printf("Received message %d\n", get.size);
switch ( get.type.b) { switch ( (int)get.type.b) {
case remote_cMsgClass: { case remote_cMsgClass: {
search_remtrans = true; search_remtrans = true;
......
...@@ -7,8 +7,7 @@ ...@@ -7,8 +7,7 @@
/*@{*/ /*@{*/
/** @defgroup rt_ex Application examples /** @ingroup rt_ex
* @ingroup applex
* @{ * @{
*/ */
#include "pwr.h" #include "pwr.h"
......
...@@ -2399,7 +2399,7 @@ action_thread () ...@@ -2399,7 +2399,7 @@ action_thread ()
msg = qcom_Get( &sts, &l.action_qid, &get, qcom_cTmoEternal); msg = qcom_Get( &sts, &l.action_qid, &get, qcom_cTmoEternal);
if ( ODD(sts)) { if ( ODD(sts)) {
switch ( get.type.b) { switch ( (int)get.type.b) {
case qmon_cMsgClassAction: { case qmon_cMsgClassAction: {
switch ( get.type.s) { switch ( get.type.s) {
case qmon_eMsgTypeAction_NodeActive: case qmon_eMsgTypeAction_NodeActive:
......
...@@ -71,7 +71,6 @@ typedef pwr_tDlid gdh_tDlid; ...@@ -71,7 +71,6 @@ typedef pwr_tDlid gdh_tDlid;
typedef pwr_tDlid DLID; typedef pwr_tDlid DLID;
/** @defgroup DS Gdh Data Structures /** @defgroup DS Gdh Data Structures
* @ingroup GDH
* @{ * @{
*/ */
...@@ -175,7 +174,6 @@ typedef struct { ...@@ -175,7 +174,6 @@ typedef struct {
/** @} */ /** @} */
/** /**
* @defgroup GDHFC Gdh Functions * @defgroup GDHFC Gdh Functions
* @ingroup GDH
* @{ * @{
*/ */
......
...@@ -64,7 +64,6 @@ extern "C" { ...@@ -64,7 +64,6 @@ extern "C" {
/** @defgroup MSGH_DS MhAppl Data Structures /** @defgroup MSGH_DS MhAppl Data Structures
* @ingroup MSGH
* @{ * @{
*/ */
...@@ -135,7 +134,6 @@ struct mhs_ApplMessage { ...@@ -135,7 +134,6 @@ struct mhs_ApplMessage {
/**@}*/ /**@}*/
/** @defgroup MSGH_FC MhAppl Functions /** @defgroup MSGH_FC MhAppl Functions
* @ingroup MSGH
* @{ * @{
*/ */
......
...@@ -105,7 +105,6 @@ extern "C" ...@@ -105,7 +105,6 @@ extern "C"
#define qcom_cImonAction (1<<31 | 108) #define qcom_cImonAction (1<<31 | 108)
/** @defgroup QCOM_DS Qcom Data Structures /** @defgroup QCOM_DS Qcom Data Structures
* @ingroup QCOM
* @{ * @{
*/ */
...@@ -268,7 +267,6 @@ typedef struct { ...@@ -268,7 +267,6 @@ typedef struct {
/** @} */ /** @} */
/** @defgroup QCOM_FC Qcom Functions /** @defgroup QCOM_FC Qcom Functions
* @ingroup QCOM
* @{ * @{
*/ */
......
...@@ -8,9 +8,9 @@ BEGIN { ...@@ -8,9 +8,9 @@ BEGIN {
} }
else { else {
gsub( "\(/", "/"); gsub( "\\(/", "/");
if ( match( $0, "\)")) { if ( match( $0, "\\)")) {
gsub( "\)", "("); gsub( "\\)", "(");
printf( "%s) \\\n", $0); printf( "%s) \\\n", $0);
} }
else else
......
...@@ -115,6 +115,7 @@ class XttVideoMgm { ...@@ -115,6 +115,7 @@ class XttVideoMgm {
vector<VideoMgmCamera> m_camera; vector<VideoMgmCamera> m_camera;
XttVideoMgm() : m_camera_cnt(0), m_scantime(0.5), m_op(0) {} XttVideoMgm() : m_camera_cnt(0), m_scantime(0.5), m_op(0) {}
virtual ~XttVideoMgm() {}
int cinit(); int cinit();
void cscan(); void cscan();
void configure_layout(); void configure_layout();
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment