Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 43745
b: refs/heads/master
c: 0b2dd13
h: refs/heads/master
i:
  43743: 4042183
v: v3
  • Loading branch information
Alexey Dobriyan authored and Linus Torvalds committed Dec 8, 2006
1 parent 361c678 commit c764202
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: f6e2cdc8aa395ea813603bfd81b70b5c461a8ebf
refs/heads/master: 0b2dd130a5a8774a30de1f94266f6b9a9892153c
2 changes: 1 addition & 1 deletion trunk/drivers/isdn/hardware/eicon/divasmain.c
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ void diva_log_info(unsigned char *format, ...)
unsigned char line[160];

va_start(args, format);
vsprintf(line, format, args);
vsnprintf(line, sizeof(line), format, args);
va_end(args);

printk(KERN_INFO "%s: %s\n", DRIVERLNAME, line);
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/isdn/hisax/hisax_isac.c
Original file line number Diff line number Diff line change
Expand Up @@ -433,7 +433,7 @@ static void l1m_debug(struct FsmInst *fi, char *fmt, ...)
char buf[256];

va_start(args, fmt);
vsprintf(buf, fmt, args);
vsnprintf(buf, sizeof(buf), fmt, args);
DBG(DBG_L1M, "%s", buf);
va_end(args);
}
Expand Down
4 changes: 2 additions & 2 deletions trunk/drivers/isdn/hisax/st5481_d.c
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ static void l1m_debug(struct FsmInst *fi, char *fmt, ...)
char buf[256];

va_start(args, fmt);
vsprintf(buf, fmt, args);
vsnprintf(buf, sizeof(buf), fmt, args);
DBG(8, "%s", buf);
va_end(args);
}
Expand Down Expand Up @@ -275,7 +275,7 @@ static void dout_debug(struct FsmInst *fi, char *fmt, ...)
char buf[256];

va_start(args, fmt);
vsprintf(buf, fmt, args);
vsnprintf(buf, sizeof(buf), fmt, args);
DBG(0x2, "%s", buf);
va_end(args);
}
Expand Down

0 comments on commit c764202

Please sign in to comment.