mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Fix some warnings
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
3d8c0b2771
commit
c6bc88b50d
3 changed files with 6 additions and 7 deletions
|
@ -18,7 +18,8 @@
|
|||
unsigned char lector_bytes[2], lector_word[4], tmp_1byte, *byte;
|
||||
unsigned int tmp_2bytes;
|
||||
char is_nitrox, is_O2, is_SCR;
|
||||
unsigned long tmp_4bytes, maxbuf;
|
||||
unsigned long tmp_4bytes;
|
||||
long maxbuf;
|
||||
|
||||
static unsigned int two_bytes_to_int(unsigned char x, unsigned char y)
|
||||
{
|
||||
|
@ -146,7 +147,7 @@ static dc_status_t dt_libdc_buffer(unsigned char *ptr, int prf_length, int dc_mo
|
|||
*/
|
||||
unsigned char *dt_dive_parser(unsigned char *runner, struct dive *dt_dive)
|
||||
{
|
||||
int rc, profile_length, n = 0, libdc_model;
|
||||
int rc, profile_length, libdc_model;
|
||||
char *tmp_notes_str = NULL;
|
||||
unsigned char *tmp_string1 = NULL,
|
||||
*locality = NULL,
|
||||
|
|
|
@ -1293,7 +1293,7 @@ static void plot_string(struct plot_info *pi, struct plot_data *entry, struct me
|
|||
{
|
||||
int pressurevalue, mod, ead, end, eadd;
|
||||
const char *depth_unit, *pressure_unit, *temp_unit, *vertical_speed_unit;
|
||||
double depthvalue, tempvalue, speedvalue, sacvalue, density;
|
||||
double depthvalue, tempvalue, speedvalue, sacvalue;
|
||||
int decimals;
|
||||
const char *unit;
|
||||
|
||||
|
|
|
@ -224,10 +224,8 @@ void TestParse::testParseHUDC()
|
|||
|
||||
void TestParse::testParseNewFormat()
|
||||
{
|
||||
struct dive *dive;
|
||||
QDir dir;
|
||||
QStringList filter;
|
||||
QString firstLine;
|
||||
QStringList files;
|
||||
|
||||
/*
|
||||
|
|
Loading…
Add table
Reference in a new issue