diff options
Diffstat (limited to 'drivers/sgi/char/streamable.c')
-rw-r--r-- | drivers/sgi/char/streamable.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/sgi/char/streamable.c b/drivers/sgi/char/streamable.c index b07bedece..1f354d80f 100644 --- a/drivers/sgi/char/streamable.c +++ b/drivers/sgi/char/streamable.c @@ -52,14 +52,14 @@ get_sioc (struct strioctl *sioc, unsigned long arg) static int sgi_gfx_open (struct inode *inode, struct file *file) { - printk ("GFX: Opened by %ld\n", current->pid); + printk ("GFX: Opened by %d\n", current->pid); return 0; } static int sgi_gfx_close (struct inode *inode, struct file *file) { - printk ("GFX: Closed by %ld\n", current->pid); + printk ("GFX: Closed by %d\n", current->pid); return 0; } |