Skip to content

Commit 45e11fb

Browse files
authored
Merge pull request #322 from Mellanox/master_devel
Merging master_devel to master for 4.14.0-1 release
2 parents 0c3327f + b1d788a commit 45e11fb

File tree

171 files changed

+55403
-3224
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

171 files changed

+55403
-3224
lines changed

Makefile.am

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@ man_MANS = man/mstflint.1 man/mstconfig.1 man/mstmcra.1 man/mstmread.1 man/mstmw
3838

3939
EXTRA_DIST = \
4040
mstflint.spec \
41-
small_utils/hca_self_test.ofed \
4241
common/gitversion.h \
4342
debian \
4443
$(man_MANS)

adb_parser/adb_expr.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ int AdbExpr::ResolveName(char *name, u_int64_t *val)
106106
/**
107107
* Function: AdbExpr::Error
108108
**/
109-
void AdbExpr::Error(char *message)
109+
void AdbExpr::Error(const std::string& message)
110110
{
111111
throw AdbException(string("Expression evaluation error: ") + message);
112112
}

adb_parser/adb_expr.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ class AdbExpr : public Expr
4949

5050
static const char* statusStr(int status);
5151
int ResolveName(char *name, u_int64_t *val);
52-
void Error(char *message);
52+
void Error(const std::string& message);
5353
void setVars(map<string, string> *varsMap);
5454

5555
private:

0 commit comments

Comments
 (0)