Discussion:
[yocto] [PATCH pseudo 1/2] pseudo_db: add missing stdint include
Ross Burton
2018-11-06 12:00:22 UTC
Permalink
---
pseudo_db.c | 1 +
1 file changed, 1 insertion(+)

diff --git a/pseudo_db.c b/pseudo_db.c
index 0994048..31f4dc4 100644
--- a/pseudo_db.c
+++ b/pseudo_db.c
@@ -18,6 +18,7 @@
*
*/
#include <stdio.h>
+#include <stdint.h>
#include <stdlib.h>
#include <string.h>
#include <sys/stat.h>
--
2.11.0

--
Ross Burton
2018-11-06 12:00:23 UTC
Permalink
---
pseudo_client.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/pseudo_client.c b/pseudo_client.c
index 5604cbf..e2ea715 100644
--- a/pseudo_client.c
+++ b/pseudo_client.c
@@ -1783,7 +1783,8 @@ pseudo_client_op(pseudo_op_t op, int access, int fd, int dirfd, const char *path
break;
case OP_OPEN:
pseudo_client_path(fd, path);
- case OP_EXEC: /* fallthrough */
+ /* fallthrough */
+ case OP_EXEC:
do_request = pseudo_client_logging;
break;
case OP_CLOSE:
--
2.11.0

--
Loading...