Browse Source

Fixed a & vs && bug

sbg
Lorenz Meier 13 years ago
parent
commit
5c7f7f5a4c
  1. 6
      apps/systemlib/param/param.c

6
apps/systemlib/param/param.c

@ -59,7 +59,7 @@ @@ -59,7 +59,7 @@
#include "uORB/uORB.h"
#include "uORB/topics/parameter_update.h"
#if 0
#if 1
# define debug(fmt, args...) do { warnx(fmt, ##args); } while(0)
#else
# define debug(fmt, args...) do { } while(0)
@ -479,7 +479,7 @@ param_export(int fd, bool only_unsaved) @@ -479,7 +479,7 @@ param_export(int fd, bool only_unsaved)
* If we are only saving values changed since last save, and this
* one hasn't, then skip it
*/
if (only_unsaved & !s->unsaved)
if (only_unsaved && !s->unsaved)
continue;
s->unsaved = false;
@ -519,7 +519,7 @@ param_export(int fd, bool only_unsaved) @@ -519,7 +519,7 @@ param_export(int fd, bool only_unsaved)
break;
default:
debug("unrecognised parameter type");
debug("unrecognized parameter type");
goto out;
}
}

Loading…
Cancel
Save