diff options
author | Sergei Golubchik <serg@mariadb.org> | 2017-05-19 22:27:26 +0200 |
---|---|---|
committer | Sergei Golubchik <serg@mariadb.org> | 2017-05-19 22:27:26 +0200 |
commit | eb30230359309de8972d771cbf282097b1175a09 (patch) | |
tree | 78342b321820ec6ce5c9a3636574ea174ee40283 /storage/connect/value.h | |
parent | 6dcc378964a1a35c0c95b6963b73224e52cf4cad (diff) | |
download | mariadb-git-eb30230359309de8972d771cbf282097b1175a09.tar.gz |
compilation warnings in Connect
Diffstat (limited to 'storage/connect/value.h')
-rw-r--r-- | storage/connect/value.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/storage/connect/value.h b/storage/connect/value.h index cf6682f56f2..2754c761815 100644 --- a/storage/connect/value.h +++ b/storage/connect/value.h @@ -122,8 +122,8 @@ class DllExport VALUE : public BLOCK { virtual bool IsEqual(PVAL vp, bool chktype) = 0; virtual bool Compute(PGLOBAL g, PVAL *vp, int np, OPVAL op); virtual bool FormatValue(PVAL vp, PCSZ fmt) = 0; - virtual void Print(PGLOBAL g, FILE *, uint); - virtual void Print(PGLOBAL g, char *ps, uint z); + virtual void Printf(PGLOBAL g, FILE *, uint); + virtual void Prints(PGLOBAL g, char *ps, uint z); /** Set value from a non-aligned in-memory value in the machine byte order. @@ -308,7 +308,7 @@ class DllExport TYPVAL<PSZ>: public VALUE { virtual bool Compute(PGLOBAL g, PVAL *vp, int np, OPVAL op); virtual bool FormatValue(PVAL vp, PCSZ fmt); virtual bool SetConstFormat(PGLOBAL, FORMAT&); - virtual void Print(PGLOBAL g, char *ps, uint z); + virtual void Prints(PGLOBAL g, char *ps, uint z); protected: // Members |