All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH pseudo 1/2] pseudo_db: add missing stdint include
@ 2018-11-06 12:00 Ross Burton
  2018-11-06 12:00 ` [PATCH pseudo 2/2] pseudo_client: move fallthrough comment to silence compiler warning Ross Burton
  0 siblings, 1 reply; 2+ messages in thread
From: Ross Burton @ 2018-11-06 12:00 UTC (permalink / raw)
  To: yocto

---
 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



^ permalink raw reply related	[flat|nested] 2+ messages in thread

* [PATCH pseudo 2/2] pseudo_client: move fallthrough comment to silence compiler warning
  2018-11-06 12:00 [PATCH pseudo 1/2] pseudo_db: add missing stdint include Ross Burton
@ 2018-11-06 12:00 ` Ross Burton
  0 siblings, 0 replies; 2+ messages in thread
From: Ross Burton @ 2018-11-06 12:00 UTC (permalink / raw)
  To: yocto

---
 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



^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2018-11-06 12:00 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-11-06 12:00 [PATCH pseudo 1/2] pseudo_db: add missing stdint include Ross Burton
2018-11-06 12:00 ` [PATCH pseudo 2/2] pseudo_client: move fallthrough comment to silence compiler warning Ross Burton

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.