diff --git a/xpcom/tools/registry/regxpcom.cpp b/xpcom/tools/registry/regxpcom.cpp index 98627ba6aa8..b7e7ae40bc3 100644 --- a/xpcom/tools/registry/regxpcom.cpp +++ b/xpcom/tools/registry/regxpcom.cpp @@ -198,7 +198,7 @@ nsresult Register(const char *path) nsCOMPtr registrar; rv = NS_GetComponentRegistrar(getter_AddRefs(registrar)); if (NS_FAILED(rv)) { - printf("Can not aquire component registrar\n"); + printf("Can not acquire component registrar\n"); return rv; } @@ -376,7 +376,7 @@ int main(int argc, char *argv[]) nsCOMPtr registrar; rv = NS_GetComponentRegistrar(getter_AddRefs(registrar)); if (NS_FAILED(rv)) { - printf("Can not aquire component registrar\n"); + printf("Can not acquire component registrar\n"); return -1; } rv = registrar->AutoRegister(nsnull);