All of lore.kernel.org
 help / color / mirror / Atom feed
* monitor
@ 2004-04-27 20:20 dave
  2004-04-27 20:34 ` monitor Armen Kaleshian
                   ` (2 more replies)
  0 siblings, 3 replies; 7+ messages in thread
From: dave @ 2004-04-27 20:20 UTC (permalink / raw)
  To: Linux-Newbie

I purchased a 17" monitor with 1280X1024 resolution.  That resolution 
makes my text and pictures to small.  I need to run 1024X768.  However 
1024X768 doesn't look very good.  The detail is not sharp.  Is ther 
anyway to decrease the viewed resolution without reducing the video 
cards resolution?  I'm having a tough time explaining this so if you 
don't understand and maybe I can answer some questions.  Thanks for your 
time.
Dave

-- 
Dave Pomeroy K7DNP South Eastern Washington



-
To unsubscribe from this list: send the line "unsubscribe linux-newbie" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.linux-learn.org/faqs

^ permalink raw reply	[flat|nested] 7+ messages in thread
* [PATCH BlueZ 1/2] monitor: Fix crash when there is no write handler
@ 2023-03-23 10:28 Simon Mikuda
  2023-03-23 11:48 ` monitor bluez.test.bot
  0 siblings, 1 reply; 7+ messages in thread
From: Simon Mikuda @ 2023-03-23 10:28 UTC (permalink / raw)
  To: linux-bluetooth; +Cc: Simon Mikuda

---
 monitor/att.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/monitor/att.c b/monitor/att.c
index f9643b333..d3b82074f 100644
--- a/monitor/att.c
+++ b/monitor/att.c
@@ -2946,7 +2946,7 @@ static void print_write(const struct l2cap_frame *frame, uint16_t handle,
 		return;
 
 	handler = get_handler(attr);
-	if (!handler)
+	if (!handler || !handler->write)
 		return;
 
 	handler->write(frame);
-- 
2.34.1


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

end of thread, other threads:[~2023-03-23 11:48 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-04-27 20:20 monitor dave
2004-04-27 20:34 ` monitor Armen Kaleshian
2004-04-27 21:03 ` monitor Ray Olszewski
2004-04-27 21:34   ` monitor dave
2004-04-28  5:51     ` monitor Richard Adams
2004-04-27 21:15 ` monitor Steven Smith
  -- strict thread matches above, loose matches on Subject: below --
2023-03-23 10:28 [PATCH BlueZ 1/2] monitor: Fix crash when there is no write handler Simon Mikuda
2023-03-23 11:48 ` monitor bluez.test.bot

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.