summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorGeert Uytterhoeven <geert@linux-m68k.org>2002-11-02 23:51:21 -0800
committerLinus Torvalds <torvalds@penguin.transmeta.com>2002-11-02 23:51:21 -0800
commit93bb6e22efeb4d6b1e9012081cf07f59085517f2 (patch)
tree13c8bd20f9dbf0080072956c4bac849ab415d48d /include
parentb1b782f7b7fced03a6dc51d3e52595fcfc9ac106 (diff)
[PATCH] C99 designated initializers for include/asm-m68k/thread_info.h
C99 designated initializers for include/asm-m68k/thread_info.h (from Art Haas <ahaas@neosoft.com>)
Diffstat (limited to 'include')
-rw-r--r--include/asm-m68k/thread_info.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/asm-m68k/thread_info.h b/include/asm-m68k/thread_info.h
index 64c9f51e0c63..fb85300edc4d 100644
--- a/include/asm-m68k/thread_info.h
+++ b/include/asm-m68k/thread_info.h
@@ -18,8 +18,8 @@ struct thread_info {
#define INIT_THREAD_INFO(tsk) \
{ \
- task: &tsk, \
- exec_domain: &default_exec_domain, \
+ .task = &tsk, \
+ .exec_domain = &default_exec_domain, \
}
/* THREAD_SIZE should be 8k, so handle differently for 4k and 8k machines */