Commit b55b84bd authored by service's avatar service

Compile on Debian 8

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